diff options
-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> |