diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-11-02 21:43:08 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-11-02 21:43:08 -0800 |
commit | 916966f88a3ed3246374efb625804b11bdda6fa5 (patch) | |
tree | 33746b2a4eab9d336db4fe57c7056e5d83f407fa /src/DotNetOAuth/ServiceProviderDescription.cs | |
parent | 696c3507c353a2b96d832efe6c8b87cfbad0b17a (diff) | |
download | DotNetOpenAuth-916966f88a3ed3246374efb625804b11bdda6fa5.zip DotNetOpenAuth-916966f88a3ed3246374efb625804b11bdda6fa5.tar.gz DotNetOpenAuth-916966f88a3ed3246374efb625804b11bdda6fa5.tar.bz2 |
Renamed all the OAuth message types.
Diffstat (limited to 'src/DotNetOAuth/ServiceProviderDescription.cs')
-rw-r--r-- | src/DotNetOAuth/ServiceProviderDescription.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOAuth/ServiceProviderDescription.cs b/src/DotNetOAuth/ServiceProviderDescription.cs index 870133c..be7db5b 100644 --- a/src/DotNetOAuth/ServiceProviderDescription.cs +++ b/src/DotNetOAuth/ServiceProviderDescription.cs @@ -34,7 +34,7 @@ namespace DotNetOAuth { /// </summary>
/// <remarks>
/// The request URL query MUST NOT contain any OAuth Protocol Parameters.
- /// This is the URL that <see cref="Messages.GetRequestTokenMessage"/> messages are directed to.
+ /// This is the URL that <see cref="Messages.UnauthorizedTokenRequest"/> messages are directed to.
/// </remarks>
/// <exception cref="ArgumentException">Thrown if this property is set to a URI with OAuth protocol parameters.</exception>
public MessageReceivingEndpoint RequestTokenEndpoint {
@@ -56,7 +56,7 @@ namespace DotNetOAuth { /// described in Section 6.2 (Obtaining User Authorization).
/// </summary>
/// <remarks>
- /// This is the URL that <see cref="Messages.DirectUserToServiceProviderMessage"/> messages are
+ /// This is the URL that <see cref="Messages.UserAuthorizationRequest"/> messages are
/// indirectly (via the user agent) sent to.
/// </remarks>
public MessageReceivingEndpoint UserAuthorizationEndpoint { get; set; }
@@ -66,7 +66,7 @@ namespace DotNetOAuth { /// for an Access Token, described in Section 6.3 (Obtaining an Access Token).
/// </summary>
/// <remarks>
- /// This is the URL that <see cref="Messages.GetAccessTokenMessage"/> messages are directed to.
+ /// This is the URL that <see cref="Messages.AuthorizedTokenRequest"/> messages are directed to.
/// </remarks>
public MessageReceivingEndpoint AccessTokenEndpoint { get; set; }
|