summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.AspNet/IAuthenticationClient.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/IAuthenticationClient.cs
parentedb0bcda46d8dfffe7f8e54b6adfe3c893155162 (diff)
downloadDotNetOpenAuth-4cc2523e6f2c2f9975d3328ae983cc509c449315.zip
DotNetOpenAuth-4cc2523e6f2c2f9975d3328ae983cc509c449315.tar.gz
DotNetOpenAuth-4cc2523e6f2c2f9975d3328ae983cc509c449315.tar.bz2
Removed some pointless #regions
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
}
}