summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenId/Extensions/AttributeResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenId/Extensions/AttributeResponse.cs')
-rw-r--r--src/DotNetOpenId/Extensions/AttributeResponse.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/DotNetOpenId/Extensions/AttributeResponse.cs b/src/DotNetOpenId/Extensions/AttributeResponse.cs
new file mode 100644
index 0000000..cff7874
--- /dev/null
+++ b/src/DotNetOpenId/Extensions/AttributeResponse.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace DotNetOpenId.Extensions {
+ /// <summary>
+ /// An individual attribute's value(s) as supplied by an OpenID Provider
+ /// in response to a prior request by an OpenID Relying Party.
+ /// </summary>
+ public class AttributeResponse {
+ internal AttributeResponse() { }
+
+ /// <summary>
+ /// The URI uniquely identifying the attribute whose value is being supplied.
+ /// </summary>
+ public string TypeUri { get; internal set; }
+
+ /// <summary>
+ /// Gets the values supplied by the Provider.
+ /// </summary>
+ public string[] Values;
+ }
+}