summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs')
-rw-r--r--src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs b/src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs
index 58232c6..4d9acde 100644
--- a/src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs
+++ b/src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs
@@ -12,17 +12,11 @@ namespace DotNetOpenAuth.AspNet {
/// Represents a client which can authenticate users via an external website/provider.
/// </summary>
public interface IAuthenticationClient {
- #region Public Properties
-
/// <summary>
/// Gets the name of the provider which provides authentication service.
/// </summary>
string ProviderName { get; }
- #endregion
-
- #region Public Methods and Operators
-
/// <summary>
/// Attempts to authenticate users by forwarding them to an external website, and upon succcess or failure, redirect users back to the specified url.
/// </summary>
@@ -44,6 +38,5 @@ namespace DotNetOpenAuth.AspNet {
/// An instance of <see cref="AuthenticationResult"/> containing authentication result.
/// </returns>
AuthenticationResult VerifyAuthentication(HttpContextBase context);
- #endregion
}
}