diff options
Diffstat (limited to 'src/DotNetOAuth.Test/Mocks/TestChannel.cs')
-rw-r--r-- | src/DotNetOAuth.Test/Mocks/TestChannel.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/DotNetOAuth.Test/Mocks/TestChannel.cs b/src/DotNetOAuth.Test/Mocks/TestChannel.cs index c280243..bc2ed1e 100644 --- a/src/DotNetOAuth.Test/Mocks/TestChannel.cs +++ b/src/DotNetOAuth.Test/Mocks/TestChannel.cs @@ -20,6 +20,10 @@ namespace DotNetOAuth.Test.Mocks { throw new NotImplementedException();
}
+ protected internal override IProtocolMessage Receive(System.IO.Stream responseStream) {
+ throw new NotImplementedException();
+ }
+
protected override void SendDirectMessageResponse(IProtocolMessage response) {
throw new NotImplementedException();
}
|