diff options
Diffstat (limited to 'src/DotNetOpenAuth/Messaging/ChannelContract.cs')
-rw-r--r-- | src/DotNetOpenAuth/Messaging/ChannelContract.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth/Messaging/ChannelContract.cs b/src/DotNetOpenAuth/Messaging/ChannelContract.cs index d5db0ad..8b45ce1 100644 --- a/src/DotNetOpenAuth/Messaging/ChannelContract.cs +++ b/src/DotNetOpenAuth/Messaging/ChannelContract.cs @@ -29,7 +29,7 @@ namespace DotNetOpenAuth.Messaging { /// The deserialized message parts, if found. Null otherwise. /// </returns> /// <exception cref="ProtocolException">Thrown when the response is not valid.</exception> - protected override IDictionary<string, string> ReadFromResponseCore(DirectWebResponse response) { + protected override IDictionary<string, string> ReadFromResponseCore(IncomingWebResponse response) { Contract.Requires(response != null); throw new NotImplementedException(); } @@ -45,9 +45,9 @@ namespace DotNetOpenAuth.Messaging { /// <remarks> /// This method implements spec V1.0 section 5.3. /// </remarks> - protected override UserAgentResponse SendDirectMessageResponse(IProtocolMessage response) { + protected override OutgoingWebResponse SendDirectMessageResponse(IProtocolMessage response) { Contract.Requires(response != null); - Contract.Ensures(Contract.Result<UserAgentResponse>() != null); + Contract.Ensures(Contract.Result<OutgoingWebResponse>() != null); throw new NotImplementedException(); } } |