diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-30 23:24:46 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-30 23:24:46 -0700 |
commit | eb5a492c0cf6d60badf41ac20229c19e14adccfe (patch) | |
tree | 87cf1ef128629b296c76adb946353705d99f492a /src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs | |
parent | 12ff0dc0fa007968813675a2e0d447389a5c1bd3 (diff) | |
download | DotNetOpenAuth-eb5a492c0cf6d60badf41ac20229c19e14adccfe.zip DotNetOpenAuth-eb5a492c0cf6d60badf41ac20229c19e14adccfe.tar.gz DotNetOpenAuth-eb5a492c0cf6d60badf41ac20229c19e14adccfe.tar.bz2 |
Consolidated all code and token serializations to one binding element.
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 9c15045..09d35ee 100644 --- a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs +++ b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/ChannelElements/OAuth2AuthorizationServerChannel.cs @@ -116,7 +116,7 @@ namespace DotNetOpenAuth.OAuth2.ChannelElements { // The order they are provided is used for outgoing messgaes, and reversed for incoming messages. bindingElements.Add(new MessageValidationBindingElement()); bindingElements.Add(new AccessTokenBindingElement()); - bindingElements.Add(new AccessRequestBindingElement()); + bindingElements.Add(new TokenCodeSerializationBindingElement()); return bindingElements.ToArray(); } |