summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenId/Extensions/AttributeExchangeFetchRequest.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-04-12 21:06:57 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2008-04-15 22:23:42 -0700
commit03374ffbc284ea9a7eefa02584e4750b8082d066 (patch)
treeb436667889009e50d3fa4da1b48d8f6b33cf267d /src/DotNetOpenId/Extensions/AttributeExchangeFetchRequest.cs
parent1a31e492cda56e542be91f6d34d5c49941d21d24 (diff)
downloadDotNetOpenAuth-03374ffbc284ea9a7eefa02584e4750b8082d066.zip
DotNetOpenAuth-03374ffbc284ea9a7eefa02584e4750b8082d066.tar.gz
DotNetOpenAuth-03374ffbc284ea9a7eefa02584e4750b8082d066.tar.bz2
Added skeletal structure of Attribute Exchange extension classes.
Diffstat (limited to 'src/DotNetOpenId/Extensions/AttributeExchangeFetchRequest.cs')
-rw-r--r--src/DotNetOpenId/Extensions/AttributeExchangeFetchRequest.cs27
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();
+ }
+ }
+}