summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-01 22:00:51 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-01 23:19:24 -0800
commit1bd4984eee2220622b90cbedf8fc2cdb72bbf98b (patch)
tree213217e9da0d31d7fb6ef7fc993e5cc3ba5113c2 /src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs
parent862d9349ecf31b58e65072f91a5ee1956c31ba4b (diff)
downloadDotNetOpenAuth-1bd4984eee2220622b90cbedf8fc2cdb72bbf98b.zip
DotNetOpenAuth-1bd4984eee2220622b90cbedf8fc2cdb72bbf98b.tar.gz
DotNetOpenAuth-1bd4984eee2220622b90cbedf8fc2cdb72bbf98b.tar.bz2
Added some missing comments.
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs')
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs
index 319d1d9..7570b4d 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs
@@ -101,11 +101,11 @@ namespace DotNetOpenAuth.AspNet.Clients {
}
/// <summary>
- /// Gets the full url pointing to the login page for this client. The url should include the
+ /// Gets the full url pointing to the login page for this client. The url should include the
/// specified return url so that when the login completes, user is redirected back to that url.
/// </summary>
/// <param name="returnUrl">The return URL.</param>
- /// <returns></returns>
+ /// <returns>An absolute URL.</returns>
[SuppressMessage("Microsoft.Naming", "CA1726:UsePreferredTerms", MessageId = "Login", Justification = "Login is used more consistently in ASP.Net")]
protected abstract Uri GetServiceLoginUrl(Uri returnUrl);
@@ -114,7 +114,7 @@ namespace DotNetOpenAuth.AspNet.Clients {
/// </summary>
/// <param name="returnUrl">The return URL.</param>
/// <param name="authorizationCode">The authorization code.</param>
- /// <returns></returns>
+ /// <returns>The access token</returns>
protected abstract string QueryAccessToken(Uri returnUrl, string authorizationCode);
/// <summary>