diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-11-01 22:35:42 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-11-01 22:35:42 -0700 |
commit | 0e2a186690a3f3e8b0d6e1701389fd9df88b8002 (patch) | |
tree | 5e23d2dda4a17a275b6f3cf9d6f03eb8ea2f9dc2 /src/DotNetOAuth/ConsumerBase.cs | |
parent | 7bc257eacda8afd0226f3e9ab450a7a9e2c48bb2 (diff) | |
download | DotNetOpenAuth-0e2a186690a3f3e8b0d6e1701389fd9df88b8002.zip DotNetOpenAuth-0e2a186690a3f3e8b0d6e1701389fd9df88b8002.tar.gz DotNetOpenAuth-0e2a186690a3f3e8b0d6e1701389fd9df88b8002.tar.bz2 |
StyleCop fixes.
Diffstat (limited to 'src/DotNetOAuth/ConsumerBase.cs')
-rw-r--r-- | src/DotNetOAuth/ConsumerBase.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/DotNetOAuth/ConsumerBase.cs b/src/DotNetOAuth/ConsumerBase.cs index 405df3a..475f9aa 100644 --- a/src/DotNetOAuth/ConsumerBase.cs +++ b/src/DotNetOAuth/ConsumerBase.cs @@ -56,15 +56,6 @@ namespace DotNetOAuth { }
/// <summary>
- /// Gets or sets the object that processes <see cref="HttpWebRequest"/>s.
- /// </summary>
- /// <remarks>
- /// This defaults to a straightforward implementation, but can be set
- /// to a mock object for testing purposes.
- /// </remarks>
- internal IWebRequestHandler WebRequestHandler { get; set; }
-
- /// <summary>
/// Gets the channel to use for sending/receiving messages.
/// </summary>
public Channel Channel {
@@ -77,6 +68,15 @@ namespace DotNetOAuth { internal OAuthChannel OAuthChannel { get; set; }
/// <summary>
+ /// Gets or sets the object that processes <see cref="HttpWebRequest"/>s.
+ /// </summary>
+ /// <remarks>
+ /// This defaults to a straightforward implementation, but can be set
+ /// to a mock object for testing purposes.
+ /// </remarks>
+ internal IWebRequestHandler WebRequestHandler { get; set; }
+
+ /// <summary>
/// Creates a web request prepared with OAuth authorization
/// that may be further tailored by adding parameters by the caller.
/// </summary>
|