summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2.ClientAuthorization
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-01 09:37:25 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-01 09:37:25 -0700
commit247d4f5fccab45f8b37438835f9a4c33b5450f6a (patch)
tree3ae9c4eb3aaeb65fc39f389796662ff753811ce9 /src/DotNetOpenAuth.OAuth2.ClientAuthorization
parentcc78ccd887b76df0587a47a2c126c541cdce4d7d (diff)
downloadDotNetOpenAuth-247d4f5fccab45f8b37438835f9a4c33b5450f6a.zip
DotNetOpenAuth-247d4f5fccab45f8b37438835f9a4c33b5450f6a.tar.gz
DotNetOpenAuth-247d4f5fccab45f8b37438835f9a4c33b5450f6a.tar.bz2
Simplified ClientDescription class and made it more flexible at the same
time.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.ClientAuthorization')
-rw-r--r--src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs b/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs
index bcef28b..ebbe1f2 100644
--- a/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs
+++ b/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs
@@ -35,7 +35,7 @@ namespace DotNetOpenAuth.OAuth2 {
/// Determines whether a callback URI included in a client's authorization request
/// is among those allowed callbacks for the registered client.
/// </summary>
- /// <param name="callback">The absolute URI the client has requested the authorization result be received at.</param>
+ /// <param name="callback">The absolute URI the client has requested the authorization result be received at. Never null.</param>
/// <returns>
/// <c>true</c> if the callback URL is allowable for this client; otherwise, <c>false</c>.
/// </returns>