diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-10 20:31:50 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-10 20:31:50 -0700 |
commit | dd49ae4a865b21f0722efab87a4b0723ec1a6950 (patch) | |
tree | 379098bde760f95a452d995bdfdb364dec7bbb7e /src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs | |
parent | bd3b3f6b07dbd1d43c2ffdff4504fd5eec1eb388 (diff) | |
download | DotNetOpenAuth-dd49ae4a865b21f0722efab87a4b0723ec1a6950.zip DotNetOpenAuth-dd49ae4a865b21f0722efab87a4b0723ec1a6950.tar.gz DotNetOpenAuth-dd49ae4a865b21f0722efab87a4b0723ec1a6950.tar.bz2 |
Renamed all the Channel virtual methods that end with Internal to end with Core.
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs b/src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs index f00c356..4911a9c 100644 --- a/src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs +++ b/src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs @@ -62,7 +62,7 @@ namespace DotNetOpenAuth.Test.Mocks { return new HttpRequestInfo(directedMessage, directedMessage.HttpMethods); } - protected override IProtocolMessage RequestInternal(IDirectedProtocolMessage request) { + protected override IProtocolMessage RequestCore(IDirectedProtocolMessage request) { HttpRequestInfo requestInfo = this.SpoofHttpMethod(request); // Drop the outgoing message in the other channel's in-slot and let them know it's there. this.RemoteChannel.incomingMessage = requestInfo.Message; @@ -82,7 +82,7 @@ namespace DotNetOpenAuth.Test.Mocks { return this.SendDirectMessageResponse(message); } - protected override IDirectedProtocolMessage ReadFromRequestInternal(HttpRequestInfo request) { + protected override IDirectedProtocolMessage ReadFromRequestCore(HttpRequestInfo request) { return request.Message; } |