diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-06 17:42:12 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-06 17:42:12 -0800 |
commit | 5c50924246387b6d9a5ce668fb389b5ec7d93434 (patch) | |
tree | f86d6f629609450619e30533b1c0c4629111050b /src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs | |
parent | ab1e20ef732e482706cf5cea47e371f90476c8f3 (diff) | |
download | DotNetOpenAuth-5c50924246387b6d9a5ce668fb389b5ec7d93434.zip DotNetOpenAuth-5c50924246387b6d9a5ce668fb389b5ec7d93434.tar.gz DotNetOpenAuth-5c50924246387b6d9a5ce668fb389b5ec7d93434.tar.bz2 |
Unit test build break fixes.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs index 3fcbf67..609cedb 100644 --- a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs +++ b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs @@ -66,7 +66,7 @@ namespace DotNetOpenAuth.OAuth2.ChannelElements { /// The deserialized message parts, if found. Null otherwise. /// </returns> /// <exception cref="ProtocolException">Thrown when the response is not valid.</exception> - protected override Task<IDictionary<string, string>> ReadFromResponseCoreAsync(HttpResponseMessage response) { + protected override Task<IDictionary<string, string>> ReadFromResponseCoreAsync(HttpResponseMessage response, CancellationToken cancellationToken) { throw new NotImplementedException(); } |