diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-30 13:48:44 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-01 11:02:44 -0700 |
commit | d385d8d38fc971e75d841b7a55591a67828caf17 (patch) | |
tree | 24d674abfb6dfcb71f5a79de9f86af225162880d /src/DotNetOAuth/MessageScheme.cs | |
parent | 5b33ddfca4d707afdd0a616940b7062d6d6e6276 (diff) | |
download | DotNetOpenAuth-d385d8d38fc971e75d841b7a55591a67828caf17.zip DotNetOpenAuth-d385d8d38fc971e75d841b7a55591a67828caf17.tar.gz DotNetOpenAuth-d385d8d38fc971e75d841b7a55591a67828caf17.tar.bz2 |
Added test for and accomodated required message parts.
Diffstat (limited to 'src/DotNetOAuth/MessageScheme.cs')
-rw-r--r-- | src/DotNetOAuth/MessageScheme.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/DotNetOAuth/MessageScheme.cs b/src/DotNetOAuth/MessageScheme.cs index 8878f40..ab42f28 100644 --- a/src/DotNetOAuth/MessageScheme.cs +++ b/src/DotNetOAuth/MessageScheme.cs @@ -3,6 +3,12 @@ using System.Collections.Generic; using System.Text;
namespace DotNetOAuth {
+ /// <summary>
+ /// The methods available for the Consumer to send messages to the Service Provider.
+ /// </summary>
+ /// <remarks>
+ /// See 1.0 spec section 5.2.
+ /// </remarks>
internal enum MessageScheme {
/// <summary>
/// In the HTTP Authorization header as defined in OAuth HTTP Authorization Scheme (OAuth HTTP Authorization Scheme).
|