summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Web/Clients/OpenID/AxKnownAttributes.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Web/Clients/OpenID/AxKnownAttributes.cs')
-rw-r--r--src/DotNetOpenAuth.Web/Clients/OpenID/AxKnownAttributes.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Web/Clients/OpenID/AxKnownAttributes.cs b/src/DotNetOpenAuth.Web/Clients/OpenID/AxKnownAttributes.cs
new file mode 100644
index 0000000..1afcc65
--- /dev/null
+++ b/src/DotNetOpenAuth.Web/Clients/OpenID/AxKnownAttributes.cs
@@ -0,0 +1,12 @@
+namespace DotNetOpenAuth.Web.Clients
+{
+ /// <summary>
+ /// Contains namespace values of common attributes used for Attribute Exchange extensions
+ /// </summary>
+ internal static class AxKnownAttributes
+ {
+ public const string FirstName = "http://axschema.org/namePerson/first";
+ public const string LastName = "http://axschema.org/namePerson/last";
+ public const string FullName = "http://axschema.org/namePerson";
+ }
+}