summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OpenId/OpenId/AuthenticationRequestMode.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-07-20 07:01:58 -0600
committerAndrew Arnott <andrewarnott@gmail.com>2011-07-20 07:01:58 -0600
commit1328f88a36187d8aa5890a46e35af59c4df04d3f (patch)
treec42a3aad4aa21d39b91dcc87a912f8cb96c22c11 /src/DotNetOpenAuth.OpenId/OpenId/AuthenticationRequestMode.cs
parentd15895e626b73b6f96f561786b4b5c941c0a4bb1 (diff)
downloadDotNetOpenAuth-1328f88a36187d8aa5890a46e35af59c4df04d3f.zip
DotNetOpenAuth-1328f88a36187d8aa5890a46e35af59c4df04d3f.tar.gz
DotNetOpenAuth-1328f88a36187d8aa5890a46e35af59c4df04d3f.tar.bz2
Splitting up the OpenID profile into OpenID RP and OP. The core OpenID DLL compiles, but the RP and OP ones do not.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId/OpenId/AuthenticationRequestMode.cs')
-rw-r--r--src/DotNetOpenAuth.OpenId/OpenId/AuthenticationRequestMode.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OpenId/OpenId/AuthenticationRequestMode.cs b/src/DotNetOpenAuth.OpenId/OpenId/AuthenticationRequestMode.cs
new file mode 100644
index 0000000..dfe7b06
--- /dev/null
+++ b/src/DotNetOpenAuth.OpenId/OpenId/AuthenticationRequestMode.cs
@@ -0,0 +1,26 @@
+//-----------------------------------------------------------------------
+// <copyright file="AuthenticationRequestMode.cs" company="Andrew Arnott">
+// Copyright (c) Andrew Arnott. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.OpenId {
+ /// <summary>
+ /// Indicates the mode the Provider should use while authenticating the end user.
+ /// </summary>
+ public enum AuthenticationRequestMode {
+ /// <summary>
+ /// The Provider should use whatever credentials are immediately available
+ /// to determine whether the end user owns the Identifier. If sufficient
+ /// credentials (i.e. cookies) are not immediately available, the Provider
+ /// should fail rather than prompt the user.
+ /// </summary>
+ Immediate,
+
+ /// <summary>
+ /// The Provider should determine whether the end user owns the Identifier,
+ /// displaying a web page to the user to login etc., if necessary.
+ /// </summary>
+ Setup,
+ }
+}