diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-21 12:39:32 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-21 12:39:32 -0700 |
commit | 76c4a164c8af4b5239834934bfa8915a60678ed5 (patch) | |
tree | bcf40394f040fced8b7b121d4a2d7f9367c78985 /src/DotNetOAuth/Messaging/HttpRequestInfo.cs | |
parent | 3b3a1836352fc2d50cb2698f9a2910aa1f9ba0d2 (diff) | |
download | DotNetOpenAuth-76c4a164c8af4b5239834934bfa8915a60678ed5.zip DotNetOpenAuth-76c4a164c8af4b5239834934bfa8915a60678ed5.tar.gz DotNetOpenAuth-76c4a164c8af4b5239834934bfa8915a60678ed5.tar.bz2 |
StylCop and FxCop work.
Diffstat (limited to 'src/DotNetOAuth/Messaging/HttpRequestInfo.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/HttpRequestInfo.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOAuth/Messaging/HttpRequestInfo.cs b/src/DotNetOAuth/Messaging/HttpRequestInfo.cs index 9a583c0..65b5dcb 100644 --- a/src/DotNetOAuth/Messaging/HttpRequestInfo.cs +++ b/src/DotNetOAuth/Messaging/HttpRequestInfo.cs @@ -59,19 +59,19 @@ namespace DotNetOAuth.Messaging { /// Gets or sets the verb in the request (i.e. GET, POST, etc.)
/// </summary>
internal string HttpMethod { get; set; }
-
+
/// <summary>
/// Gets or sets the entire URL of the request.
/// </summary>
internal Uri Url { get; set; }
-
+
/// <summary>
/// Gets the query part of the URL (The ? and everything after it).
/// </summary>
internal string Query {
get { return this.Url != null ? this.Url.Query : null; }
}
-
+
/// <summary>
/// Gets or sets the collection of headers that came in with the request.
/// </summary>
|