summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Web/BuiltInAuthenticationClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Web/BuiltInAuthenticationClient.cs')
-rw-r--r--src/DotNetOpenAuth.Web/BuiltInAuthenticationClient.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Web/BuiltInAuthenticationClient.cs b/src/DotNetOpenAuth.Web/BuiltInAuthenticationClient.cs
new file mode 100644
index 0000000..29aea59
--- /dev/null
+++ b/src/DotNetOpenAuth.Web/BuiltInAuthenticationClient.cs
@@ -0,0 +1,16 @@
+using System.Diagnostics.CodeAnalysis;
+
+namespace DotNetOpenAuth.Web
+{
+ /// <summary>
+ /// Represents built in OAuth clients.
+ /// </summary>
+ [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "OAuth")]
+ public enum BuiltInOAuthClient
+ {
+ Twitter,
+ Facebook,
+ LinkedIn,
+ WindowsLive
+ }
+}