summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationStatus.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationStatus.cs')
-rw-r--r--src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationStatus.cs43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationStatus.cs b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationStatus.cs
deleted file mode 100644
index d9e5d0a..0000000
--- a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/AuthenticationStatus.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-//-----------------------------------------------------------------------
-// <copyright file="AuthenticationStatus.cs" company="Andrew Arnott">
-// Copyright (c) Andrew Arnott. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace DotNetOpenAuth.OpenId.RelyingParty {
- /// <summary>
- /// An enumeration of the possible results of an authentication attempt.
- /// </summary>
- public enum AuthenticationStatus {
- /// <summary>
- /// The authentication was canceled by the user agent while at the provider.
- /// </summary>
- Canceled,
-
- /// <summary>
- /// The authentication failed because an error was detected in the OpenId communication.
- /// </summary>
- Failed,
-
- /// <summary>
- /// <para>The Provider responded to a request for immediate authentication approval
- /// with a message stating that additional user agent interaction is required
- /// before authentication can be completed.</para>
- /// <para>Casting the <see cref="IAuthenticationResponse"/> to a
- /// <see cref="ISetupRequiredAuthenticationResponse"/> in this case can help
- /// you retry the authentication using setup (non-immediate) mode.</para>
- /// </summary>
- SetupRequired,
-
- /// <summary>
- /// Authentication is completed successfully.
- /// </summary>
- Authenticated,
-
- /// <summary>
- /// The Provider sent a message that did not contain an identity assertion,
- /// but may carry OpenID extensions.
- /// </summary>
- ExtensionsOnly,
- }
-}