diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-01-23 21:50:40 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-01-23 21:50:40 -0800 |
commit | 98976665f90b20e4757e932ce3a33268f7e1daa6 (patch) | |
tree | eeefb570e357a608dbe8a20ab1a033233cc65a7a /samples/DotNetOpenAuth.ApplicationBlock | |
parent | b16591e45dd70602b1899d760200e72fd6d5eaec (diff) | |
download | DotNetOpenAuth-98976665f90b20e4757e932ce3a33268f7e1daa6.zip DotNetOpenAuth-98976665f90b20e4757e932ce3a33268f7e1daa6.tar.gz DotNetOpenAuth-98976665f90b20e4757e932ce3a33268f7e1daa6.tar.bz2 |
Fixed a bunch more samples.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs b/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs index 50c385e..4842e96 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs @@ -200,7 +200,7 @@ namespace DotNetOpenAuth.ApplicationBlock /// <param name="requestedAccessScope">The requested access scope.</param> /// <param name="requestToken">The unauthorized request token assigned by Google.</param> /// <returns>The URI to redirect to and the request token.</returns> - public static Task<Tuple<Uri, string>> RequestAuthorization(DesktopConsumer consumer, Applications requestedAccessScope, CancellationToken cancellationToken = default(CancellationToken)) { + public static Task<Tuple<Uri, string>> RequestAuthorizationAsync(DesktopConsumer consumer, Applications requestedAccessScope, CancellationToken cancellationToken = default(CancellationToken)) { if (consumer == null) { throw new ArgumentNullException("consumer"); } |