diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-02 08:20:16 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-02 08:20:16 -0800 |
commit | ffecd2bd3cd8e0f21d4156770afe5d84626ca6bc (patch) | |
tree | 067d30f3de1c2bdc053d0ef5c47afd52a01b8f22 /samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs | |
parent | d4d806fbcc1c7cdc86ec8234c5792bbaf667d5a8 (diff) | |
download | DotNetOpenAuth-ffecd2bd3cd8e0f21d4156770afe5d84626ca6bc.zip DotNetOpenAuth-ffecd2bd3cd8e0f21d4156770afe5d84626ca6bc.tar.gz DotNetOpenAuth-ffecd2bd3cd8e0f21d4156770afe5d84626ca6bc.tar.bz2 |
Fixes build breaks everywhere exception DNOA.AspNet.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs')
-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 def378f..a7c062e 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs @@ -219,7 +219,7 @@ namespace DotNetOpenAuth.ApplicationBlock { } } - public async Task PostBlogEntryAsync(AccessToken accessToken, string blogUrl, string title, XElement body, CancellationToken cancellationToken) { + public async Task PostBlogEntryAsync(AccessToken accessToken, string blogUrl, string title, XElement body, CancellationToken cancellationToken = default(CancellationToken)) { string feedUrl; var getBlogHome = WebRequest.Create(blogUrl); using (var blogHomeResponse = getBlogHome.GetResponse()) { |