diff options
Diffstat (limited to 'src/DotNetOpenId/Extensions/AttributeExchangeFetchRequest.cs')
-rw-r--r-- | src/DotNetOpenId/Extensions/AttributeExchangeFetchRequest.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/DotNetOpenId/Extensions/AttributeExchangeFetchRequest.cs b/src/DotNetOpenId/Extensions/AttributeExchangeFetchRequest.cs new file mode 100644 index 0000000..ad27769 --- /dev/null +++ b/src/DotNetOpenId/Extensions/AttributeExchangeFetchRequest.cs @@ -0,0 +1,27 @@ +using System;
+using System.Collections.Generic;
+using System.Text;
+using DotNetOpenId.RelyingParty;
+
+namespace DotNetOpenId.Extensions {
+ /// <summary>
+ /// The Attribute Exchange Fetch message, request leg.
+ /// </summary>
+ public struct AttributeExchangeFetchRequest {
+ /// <summary>
+ /// Adds the properties of this Attribute Exchange request to an outgoing
+ /// OpenID authentication request.
+ /// </summary>
+ public void AddToRequest(Provider.IAuthenticationRequest authenticationRequest) {
+ throw new NotImplementedException();
+ }
+ /// <summary>
+ /// Reads an incoming authentication request (from a relying party)
+ /// for Attribute Exchange properties and returns an instance of this
+ /// struct with them.
+ /// </summary>
+ public static AttributeExchangeFetchRequest ReadFromRequest(IAuthenticationResponse response) {
+ throw new NotImplementedException();
+ }
+ }
+}
|