summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-06-15 15:05:13 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-06-15 15:05:13 -0700
commitb6ca73ea7ee62ef7dd112ddbd77b606684508fa4 (patch)
treeb19224d36199713cdcb5c4ec6d289a80e0155646 /src
parent5f77f7d85cec7a50b7fcefec08283f240ba0fd10 (diff)
downloadDotNetOpenAuth-b6ca73ea7ee62ef7dd112ddbd77b606684508fa4.zip
DotNetOpenAuth-b6ca73ea7ee62ef7dd112ddbd77b606684508fa4.tar.gz
DotNetOpenAuth-b6ca73ea7ee62ef7dd112ddbd77b606684508fa4.tar.bz2
Added deprecated method warning for DesktopConsumer.ProcessUserAuthorization method.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/OAuth/DesktopConsumer.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth/OAuth/DesktopConsumer.cs b/src/DotNetOpenAuth/OAuth/DesktopConsumer.cs
index 3170394..f9c1a94 100644
--- a/src/DotNetOpenAuth/OAuth/DesktopConsumer.cs
+++ b/src/DotNetOpenAuth/OAuth/DesktopConsumer.cs
@@ -49,6 +49,7 @@ namespace DotNetOpenAuth.OAuth {
/// </summary>
/// <param name="requestToken">The request token that the user has authorized.</param>
/// <returns>The access token assigned by the Service Provider.</returns>
+ [Obsolete("Use the ProcessUserAuthorization method that takes a verifier parameter instead.")]
public AuthorizedTokenResponse ProcessUserAuthorization(string requestToken) {
return this.ProcessUserAuthorization(requestToken, null);
}