diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-16 20:49:23 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-16 20:49:23 -0800 |
commit | 549017cdf590ea4ce4d8ad55c013c33a506133a3 (patch) | |
tree | 4783fa4d796c6deb1f7f39d0937778d88858daf3 /src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs | |
parent | fcee7171b683db63aafac3c7351b22a849d06db4 (diff) | |
download | DotNetOpenAuth-549017cdf590ea4ce4d8ad55c013c33a506133a3.zip DotNetOpenAuth-549017cdf590ea4ce4d8ad55c013c33a506133a3.tar.gz DotNetOpenAuth-549017cdf590ea4ce4d8ad55c013c33a506133a3.tar.bz2 |
More warning fixes.
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs index e5fd67f..a97e5d8 100644 --- a/src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs +++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs @@ -7,6 +7,8 @@ namespace DotNetOpenAuth.AspNet.Clients { using System; using System.Collections.Generic; + using System.Threading; + using System.Web; using DotNetOpenAuth.OAuth; using DotNetOpenAuth.OAuth.ChannelElements; using DotNetOpenAuth.OAuth.Messages; @@ -92,9 +94,9 @@ namespace DotNetOpenAuth.AspNet.Clients { /// useful in an ASP.NET web application within the implementation of this method. /// Alternatively you may store the access token here without associating with a user account, /// and wait until - /// <see cref="WebConsumer.ProcessUserAuthorizationAsync()"/> + /// <see cref="WebConsumer.ProcessUserAuthorizationAsync(HttpRequestBase, CancellationToken)"/> /// or - /// <see cref="DesktopConsumer.ProcessUserAuthorizationAsync(string, string)"/> + /// <see cref="DesktopConsumer.ProcessUserAuthorizationAsync(string, string, CancellationToken)"/> /// return the access /// token to associate the access token with a user account at that point. /// </para> |