summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenId/Extensions/IClientScriptExtension.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-08-29 08:44:43 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2008-08-29 08:44:43 -0700
commit67102dc426e7ca90095b6aa8bee4a60b31117e7c (patch)
tree40dccebe135bf556b38ffe522b8834ad2709888d /src/DotNetOpenId/Extensions/IClientScriptExtension.cs
parent190ba46c2003e5e2b9dc764a4c4c50db31954301 (diff)
downloadDotNetOpenAuth-67102dc426e7ca90095b6aa8bee4a60b31117e7c.zip
DotNetOpenAuth-67102dc426e7ca90095b6aa8bee4a60b31117e7c.tar.gz
DotNetOpenAuth-67102dc426e7ca90095b6aa8bee4a60b31117e7c.tar.bz2
Added support for the Simple Registration extension to be seen in javascript for the ajax login control.
Diffstat (limited to 'src/DotNetOpenId/Extensions/IClientScriptExtension.cs')
-rw-r--r--src/DotNetOpenId/Extensions/IClientScriptExtension.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/DotNetOpenId/Extensions/IClientScriptExtension.cs b/src/DotNetOpenId/Extensions/IClientScriptExtension.cs
new file mode 100644
index 0000000..48d30e5
--- /dev/null
+++ b/src/DotNetOpenId/Extensions/IClientScriptExtension.cs
@@ -0,0 +1,23 @@
+using System.Collections.Generic;
+using DotNetOpenId.RelyingParty;
+
+namespace DotNetOpenId.Extensions {
+ public interface IClientScriptExtension : IExtension {
+ /// <summary>
+ /// Reads the extension information on an authentication response from the provider.
+ /// </summary>
+ /// <param name="fields">The fields belonging to the extension.</param>
+ /// <param name="response">The incoming OpenID response carrying the extension.</param>
+ /// <param name="typeUri">The actual extension TypeUri that was recognized in the message.</param>
+ /// <returns>
+ /// A Javascript snippet that when executed on the user agent returns an object with
+ /// the information deserialized from the extension response.
+ /// </returns>
+ /// <remarks>
+ /// This method is called <b>before</b> the signature on the assertion response has been
+ /// verified. Therefore all information in these fields should be assumed unreliable
+ /// and potentially falsified.
+ /// </remarks>
+ string InitializeJavascriptData(IDictionary<string, string> fields, IAuthenticationResponse response, string typeUri);
+ }
+}