diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-29 07:35:02 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-10-02 07:33:06 -0700 |
commit | 824734c85a613e900f552c554aada6cc4588531a (patch) | |
tree | 1aa6b1c3788c4e28c24414630a6004258d64f463 /src/DotNetOAuth/Messaging/IProtocolMessage.cs | |
parent | c5e676d0fa6daffc8e7be411ec02efdd98f4f78b (diff) | |
download | DotNetOpenAuth-824734c85a613e900f552c554aada6cc4588531a.zip DotNetOpenAuth-824734c85a613e900f552c554aada6cc4588531a.tar.gz DotNetOpenAuth-824734c85a613e900f552c554aada6cc4588531a.tar.bz2 |
Fixed HTTP Authorization header to not include extra parameters.
Combined the AdditionalParametersInHttpRequest and ExtraData concepts
Diffstat (limited to 'src/DotNetOAuth/Messaging/IProtocolMessage.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/IProtocolMessage.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/DotNetOAuth/Messaging/IProtocolMessage.cs b/src/DotNetOAuth/Messaging/IProtocolMessage.cs index 53b77d6..dac1c11 100644 --- a/src/DotNetOAuth/Messaging/IProtocolMessage.cs +++ b/src/DotNetOAuth/Messaging/IProtocolMessage.cs @@ -30,11 +30,10 @@ namespace DotNetOAuth.Messaging { MessageTransport Transport { get; }
/// <summary>
- /// Gets the dictionary of additional name/value fields tacked on to this message.
+ /// Gets the extra, non-OAuth parameters that will be included in the request.
/// </summary>
/// <remarks>
- /// Implementations of <see cref="IProtocolMessage"/> should ensure that this property
- /// never returns null.
+ /// Implementations of this interface should ensure that this property never returns null.
/// </remarks>
IDictionary<string, string> ExtraData { get; }
|