diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-03 07:38:39 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-03 07:38:39 -0700 |
commit | 2ca76eb03e338554782d66d4c167c8e3cc592d9e (patch) | |
tree | bdaf58067f24cc31a8a5215b6e812b93bad4b6b7 /src/DotNetOAuth.Test/Mocks/TestChannel.cs | |
parent | 730b0c4332591e2358263f8e0a767d4a8448831a (diff) | |
download | DotNetOpenAuth-2ca76eb03e338554782d66d4c167c8e3cc592d9e.zip DotNetOpenAuth-2ca76eb03e338554782d66d4c167c8e3cc592d9e.tar.gz DotNetOpenAuth-2ca76eb03e338554782d66d4c167c8e3cc592d9e.tar.bz2 |
A bit of Channel refactoring.
Diffstat (limited to 'src/DotNetOAuth.Test/Mocks/TestChannel.cs')
-rw-r--r-- | src/DotNetOAuth.Test/Mocks/TestChannel.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOAuth.Test/Mocks/TestChannel.cs b/src/DotNetOAuth.Test/Mocks/TestChannel.cs index bc2ed1e..1920a38 100644 --- a/src/DotNetOAuth.Test/Mocks/TestChannel.cs +++ b/src/DotNetOAuth.Test/Mocks/TestChannel.cs @@ -16,11 +16,11 @@ namespace DotNetOAuth.Test.Mocks { : base(new TestMessageTypeProvider()) {
}
- protected override IProtocolMessage Request(IDirectedProtocolMessage request) {
+ protected internal override IProtocolMessage Request(IDirectedProtocolMessage request) {
throw new NotImplementedException();
}
- protected internal override IProtocolMessage Receive(System.IO.Stream responseStream) {
+ protected internal override IProtocolMessage ReadFromResponse(System.IO.Stream responseStream) {
throw new NotImplementedException();
}
|