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/CoordinatingChannel.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/CoordinatingChannel.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs b/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs index 4598a9f..53e0b3c 100644 --- a/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs +++ b/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs @@ -148,7 +148,7 @@ namespace DotNetOpenAuth.Test.Mocks { } } - protected override IProtocolMessage RequestInternal(IDirectedProtocolMessage request) { + protected override IProtocolMessage RequestCore(IDirectedProtocolMessage request) { this.ProcessMessageFilter(request, true); // Drop the outgoing message in the other channel's in-slot and let them know it's there. @@ -183,7 +183,7 @@ namespace DotNetOpenAuth.Test.Mocks { return this.SendDirectMessageResponse(message); } - protected override IDirectedProtocolMessage ReadFromRequestInternal(HttpRequestInfo request) { + protected override IDirectedProtocolMessage ReadFromRequestCore(HttpRequestInfo request) { if (request.Message != null) { this.ProcessMessageFilter(request.Message, false); } @@ -191,9 +191,9 @@ namespace DotNetOpenAuth.Test.Mocks { return request.Message; } - protected override IDictionary<string, string> ReadFromResponseInternal(DirectWebResponse response) { + protected override IDictionary<string, string> ReadFromResponseCore(DirectWebResponse response) { Channel_Accessor accessor = Channel_Accessor.AttachShadow(this.wrappedChannel); - return accessor.ReadFromResponseInternal(response); + return accessor.ReadFromResponseCore(response); } protected override void VerifyMessageAfterReceiving(IProtocolMessage message) { |