summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/MessageScheme.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-01 16:06:01 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-01 16:06:01 -0700
commit4e83c2d321f57cac5e5605097faf15bf1b46efa5 (patch)
tree3bb5c8dff9b56f1fd2e621417c0a2efcee94adbb /src/DotNetOAuth/MessageScheme.cs
parentd5fb1dbbc8388eac763ef85310097a618ff90437 (diff)
downloadDotNetOpenAuth-4e83c2d321f57cac5e5605097faf15bf1b46efa5.zip
DotNetOpenAuth-4e83c2d321f57cac5e5605097faf15bf1b46efa5.tar.gz
DotNetOpenAuth-4e83c2d321f57cac5e5605097faf15bf1b46efa5.tar.bz2
Lots of StyleCop changes.
Diffstat (limited to 'src/DotNetOAuth/MessageScheme.cs')
-rw-r--r--src/DotNetOAuth/MessageScheme.cs11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/DotNetOAuth/MessageScheme.cs b/src/DotNetOAuth/MessageScheme.cs
index 282194f..9336159 100644
--- a/src/DotNetOAuth/MessageScheme.cs
+++ b/src/DotNetOAuth/MessageScheme.cs
@@ -1,6 +1,8 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
+//-----------------------------------------------------------------------
+// <copyright file="MessageScheme.cs" company="Andrew Arnott">
+// Copyright (c) Andrew Arnott. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
namespace DotNetOAuth {
/// <summary>
@@ -14,14 +16,17 @@ namespace DotNetOAuth {
/// In the HTTP Authorization header as defined in OAuth HTTP Authorization Scheme (OAuth HTTP Authorization Scheme).
/// </summary>
AuthorizationHeaderRequest,
+
/// <summary>
/// As the HTTP POST request body with a content-type of application/x-www-form-urlencoded.
/// </summary>
PostRequest,
+
/// <summary>
/// Added to the URLs in the query part (as defined by [RFC3986] (Berners-Lee, T., “Uniform Resource Identifiers (URI): Generic Syntax,” .) section 3).
/// </summary>
GetRequest,
+
/// <summary>
/// Response parameters are sent by the Service Provider to return Tokens and other information to the Consumer in the HTTP response body. The parameter names and values are first encoded as per Parameter Encoding (Parameter Encoding), and concatenated with the ‘&amp;’ character (ASCII code 38) as defined in [RFC3986] (Berners-Lee, T., “Uniform Resource Identifiers (URI): Generic Syntax,” .) Section 2.1.
/// </summary>