summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth.Test/Mocks/TestChannel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-03 07:38:39 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-03 07:38:39 -0700
commit2ca76eb03e338554782d66d4c167c8e3cc592d9e (patch)
treebdaf58067f24cc31a8a5215b6e812b93bad4b6b7 /src/DotNetOAuth.Test/Mocks/TestChannel.cs
parent730b0c4332591e2358263f8e0a767d4a8448831a (diff)
downloadDotNetOpenAuth-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.cs4
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();
}