diff options
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/AuthenticationResult.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/AuthenticationResult.cs | 11 |
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 } } |