diff options
Diffstat (limited to 'src/DotNetOpenId/Extensions/AttributeExchangeStoreResponse.cs')
-rw-r--r-- | src/DotNetOpenId/Extensions/AttributeExchangeStoreResponse.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/DotNetOpenId/Extensions/AttributeExchangeStoreResponse.cs b/src/DotNetOpenId/Extensions/AttributeExchangeStoreResponse.cs new file mode 100644 index 0000000..b28d2be --- /dev/null +++ b/src/DotNetOpenId/Extensions/AttributeExchangeStoreResponse.cs @@ -0,0 +1,26 @@ +using System;
+using System.Collections.Generic;
+using System.Text;
+using DotNetOpenId.RelyingParty;
+
+namespace DotNetOpenId.Extensions {
+ /// <summary>
+ /// The Attribute Exchange Store message, response leg.
+ /// </summary>
+ public struct AttributeExchangeStoreResponse {
+ /// <summary>
+ /// Adds the values of this struct to an authentication response being prepared
+ /// by an OpenID Provider.
+ /// </summary>
+ public void AddToResponse(Provider.IAuthenticationRequest authenticationRequest) {
+ throw new NotImplementedException();
+ }
+ /// <summary>
+ /// Reads a Provider's response for Attribute Exchange values and returns
+ /// an instance of this struct with the values.
+ /// </summary>
+ public static AttributeExchangeStoreResponse ReadFromResponse(IAuthenticationResponse response) {
+ throw new NotImplementedException();
+ }
+ }
+}
|