diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-05 07:34:45 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-05 07:34:45 -0700 |
commit | e7f74bcdccc41c5629ff392405f5cbf0f4912804 (patch) | |
tree | 1849b9eb505126a79017e4a45b3a667e4d19db68 | |
parent | ee3d0ed78dff797406718b0ac16cbd143996c57a (diff) | |
download | DotNetOpenAuth-e7f74bcdccc41c5629ff392405f5cbf0f4912804.zip DotNetOpenAuth-e7f74bcdccc41c5629ff392405f5cbf0f4912804.tar.gz DotNetOpenAuth-e7f74bcdccc41c5629ff392405f5cbf0f4912804.tar.bz2 |
Added clarifying comments to IAuthenticationRequest.AddCallbackArguments methods.
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/IAuthenticationRequest.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/IAuthenticationRequest.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/IAuthenticationRequest.cs index 00f9d22..4892092 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/IAuthenticationRequest.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/IAuthenticationRequest.cs @@ -72,7 +72,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// <summary> /// Makes a dictionary of key/value pairs available when the authentication is completed. /// </summary> - /// <param name="arguments">The arguments to add to the request's return_to URI.</param> + /// <param name="arguments">The arguments to add to the request's return_to URI. Values must not be null.</param> /// <remarks> /// <para>Note that these values are NOT protected against tampering in transit. No /// security-sensitive data should be stored using this method.</para> @@ -88,7 +88,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// Makes a key/value pair available when the authentication is completed. /// </summary> /// <param name="key">The parameter name.</param> - /// <param name="value">The value of the argument.</param> + /// <param name="value">The value of the argument. Must not be null.</param> /// <remarks> /// <para>Note that these values are NOT protected against tampering in transit. No /// security-sensitive data should be stored using this method.</para> |