summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2.ClientAuthorization
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-30 14:00:56 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-30 14:00:56 -0700
commit9ee48d7fa3d6d62807b854030b8303719e6f0a6f (patch)
treebe9bbbc6e86465d233f297c1c195cf9e0525f469 /src/DotNetOpenAuth.OAuth2.ClientAuthorization
parent64259bf9b143310c4812023880bb89674fe28806 (diff)
downloadDotNetOpenAuth-9ee48d7fa3d6d62807b854030b8303719e6f0a6f.zip
DotNetOpenAuth-9ee48d7fa3d6d62807b854030b8303719e6f0a6f.tar.gz
DotNetOpenAuth-9ee48d7fa3d6d62807b854030b8303719e6f0a6f.tar.bz2
Added binding element comments.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.ClientAuthorization')
-rw-r--r--src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/ChannelElements/OAuth2ChannelBase.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/ChannelElements/OAuth2ChannelBase.cs b/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/ChannelElements/OAuth2ChannelBase.cs
index a44922c..f2f674e 100644
--- a/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/ChannelElements/OAuth2ChannelBase.cs
+++ b/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/ChannelElements/OAuth2ChannelBase.cs
@@ -26,7 +26,10 @@ namespace DotNetOpenAuth.OAuth2.ChannelElements {
/// Initializes a new instance of the <see cref="OAuth2ChannelBase"/> class.
/// </summary>
/// <param name="messageTypes">The message types that are received by this channel.</param>
- /// <param name="channelBindingElements">The channel binding elements.</param>
+ /// <param name="channelBindingElements">
+ /// The binding elements to use in sending and receiving messages.
+ /// The order they are provided is used for outgoing messgaes, and reversed for incoming messages.
+ /// </param>
internal OAuth2ChannelBase(Type[] messageTypes, params IChannelBindingElement[] channelBindingElements)
: base(Requires.NotNull(messageTypes, "messageTypes"), Versions, channelBindingElements) {
}