summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/Mocks/TestChannel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-15 14:31:08 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-15 14:31:08 -0700
commitf609820f0486cf92edab48c3fbd5adfc133263bc (patch)
tree56d1ebda5f75be8d572e0a093b311a81bc920e16 /src/DotNetOpenAuth.Test/Mocks/TestChannel.cs
parent139c9be97c1ecc42e98426f8bf888eff2ab64659 (diff)
downloadDotNetOpenAuth-f609820f0486cf92edab48c3fbd5adfc133263bc.zip
DotNetOpenAuth-f609820f0486cf92edab48c3fbd5adfc133263bc.tar.gz
DotNetOpenAuth-f609820f0486cf92edab48c3fbd5adfc133263bc.tar.bz2
Renamed UserAgentResponse to OutgoingWebResponse, and DirectWebResponse to IncomingWebResponse.
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks/TestChannel.cs')
-rw-r--r--src/DotNetOpenAuth.Test/Mocks/TestChannel.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/TestChannel.cs b/src/DotNetOpenAuth.Test/Mocks/TestChannel.cs
index a72ab63..3754f01 100644
--- a/src/DotNetOpenAuth.Test/Mocks/TestChannel.cs
+++ b/src/DotNetOpenAuth.Test/Mocks/TestChannel.cs
@@ -25,7 +25,7 @@ namespace DotNetOpenAuth.Test.Mocks {
: base(messageTypeProvider, bindingElements) {
}
- protected override IDictionary<string, string> ReadFromResponseCore(DirectWebResponse response) {
+ protected override IDictionary<string, string> ReadFromResponseCore(IncomingWebResponse response) {
throw new NotImplementedException("ReadFromResponseInternal");
}
@@ -33,7 +33,7 @@ namespace DotNetOpenAuth.Test.Mocks {
throw new NotImplementedException("CreateHttpRequest");
}
- protected override UserAgentResponse SendDirectMessageResponse(IProtocolMessage response) {
+ protected override OutgoingWebResponse SendDirectMessageResponse(IProtocolMessage response) {
throw new NotImplementedException("SendDirectMessageResponse");
}
}