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/DesktopConsumer.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/DesktopConsumer.cs')
-rw-r--r-- | src/DotNetOAuth/DesktopConsumer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth/DesktopConsumer.cs b/src/DotNetOAuth/DesktopConsumer.cs index 7b9ef49..f98b4b4 100644 --- a/src/DotNetOAuth/DesktopConsumer.cs +++ b/src/DotNetOAuth/DesktopConsumer.cs @@ -48,7 +48,7 @@ namespace DotNetOAuth { /// </summary>
/// <param name="requestToken">The request token that the user has authorized.</param>
/// <returns>The access token assigned by the Service Provider.</returns>
- public new GrantAccessTokenMessage ProcessUserAuthorization(string requestToken) {
+ public new AuthorizedTokenResponse ProcessUserAuthorization(string requestToken) {
return base.ProcessUserAuthorization(requestToken);
}
}
|