diff options
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);
}
}
|