diff options
Diffstat (limited to 'src/DotNetOpenId/ExtensionArgumentsManager.cs')
-rw-r--r-- | src/DotNetOpenId/ExtensionArgumentsManager.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/DotNetOpenId/ExtensionArgumentsManager.cs b/src/DotNetOpenId/ExtensionArgumentsManager.cs index 9bcdb73..23f18a7 100644 --- a/src/DotNetOpenId/ExtensionArgumentsManager.cs +++ b/src/DotNetOpenId/ExtensionArgumentsManager.cs @@ -113,6 +113,10 @@ namespace DotNetOpenId { }
}
+ /// <summary>
+ /// Gets the fields carried by a given OpenId extension.
+ /// </summary>
+ /// <returns>The fields included in the given extension, or null if the extension is not present.</returns>
public IDictionary<string, string> GetExtensionArguments(string extensionTypeUri) {
if (!isReadMode) throw new InvalidOperationException();
if (string.IsNullOrEmpty(extensionTypeUri)) throw new ArgumentNullException("extensionTypeUri");
|