summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.AspNet/AuthenticationResult.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-11 17:36:47 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-11 17:36:47 -0700
commit4cc2523e6f2c2f9975d3328ae983cc509c449315 (patch)
tree158b8e30fe85666201189f0eea61c7aa1b796dc5 /src/DotNetOpenAuth.AspNet/AuthenticationResult.cs
parentedb0bcda46d8dfffe7f8e54b6adfe3c893155162 (diff)
downloadDotNetOpenAuth-4cc2523e6f2c2f9975d3328ae983cc509c449315.zip
DotNetOpenAuth-4cc2523e6f2c2f9975d3328ae983cc509c449315.tar.gz
DotNetOpenAuth-4cc2523e6f2c2f9975d3328ae983cc509c449315.tar.bz2
Removed some pointless #regions
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/AuthenticationResult.cs')
-rw-r--r--src/DotNetOpenAuth.AspNet/AuthenticationResult.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/DotNetOpenAuth.AspNet/AuthenticationResult.cs b/src/DotNetOpenAuth.AspNet/AuthenticationResult.cs
index e226da9..d5fb2d1 100644
--- a/src/DotNetOpenAuth.AspNet/AuthenticationResult.cs
+++ b/src/DotNetOpenAuth.AspNet/AuthenticationResult.cs
@@ -14,8 +14,6 @@ namespace DotNetOpenAuth.AspNet {
/// Represents the result of OAuth or OpenID authentication.
/// </summary>
public class AuthenticationResult {
- #region Constants and Fields
-
/// <summary>
/// Returns an instance which indicates failed authentication.
/// </summary>
@@ -23,10 +21,6 @@ namespace DotNetOpenAuth.AspNet {
Justification = "This type is immutable.")]
public static readonly AuthenticationResult Failed = new AuthenticationResult(isSuccessful: false);
- #endregion
-
- #region Constructors and Destructors
-
/// <summary>
/// Initializes a new instance of the <see cref="AuthenticationResult"/> class.
/// </summary>
@@ -81,10 +75,6 @@ namespace DotNetOpenAuth.AspNet {
}
}
- #endregion
-
- #region Public Properties
-
/// <summary>
/// Gets the error that may have occured during the authentication process
/// </summary>
@@ -120,6 +110,5 @@ namespace DotNetOpenAuth.AspNet {
/// It is not guaranteed to be unique and certainly does not merit any trust in any suggested authenticity.
/// </remarks>
public string UserName { get; private set; }
- #endregion
}
}