diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-10 21:49:43 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-10 21:49:43 -0800 |
commit | 04426dfbba325fd4ed308a6c9c6c103fed14ff13 (patch) | |
tree | f1b8b9245a3fe3b3ab6fa0f2f54db86463dc3099 /src/DotNetOpenAuth.OpenId/Yadis/DiscoveryResult.cs | |
parent | 938a79f28b0fb5718cc58f8f20be5d4207bc189f (diff) | |
download | DotNetOpenAuth-04426dfbba325fd4ed308a6c9c6c103fed14ff13.zip DotNetOpenAuth-04426dfbba325fd4ed308a6c9c6c103fed14ff13.tar.gz DotNetOpenAuth-04426dfbba325fd4ed308a6c9c6c103fed14ff13.tar.bz2 |
More warning fixes.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId/Yadis/DiscoveryResult.cs')
-rw-r--r-- | src/DotNetOpenAuth.OpenId/Yadis/DiscoveryResult.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OpenId/Yadis/DiscoveryResult.cs b/src/DotNetOpenAuth.OpenId/Yadis/DiscoveryResult.cs index c993acd..c56a170 100644 --- a/src/DotNetOpenAuth.OpenId/Yadis/DiscoveryResult.cs +++ b/src/DotNetOpenAuth.OpenId/Yadis/DiscoveryResult.cs @@ -94,6 +94,9 @@ namespace DotNetOpenAuth.Yadis { /// <summary> /// Reverts to the HTML response after the XRDS response didn't work out. /// </summary> + /// <returns> + /// A task that completes with the asynchronous operation. + /// </returns> internal async Task TryRevertToHtmlResponseAsync() { if (this.htmlFallback != null) { await this.ApplyHtmlResponseAsync(this.htmlFallback); @@ -105,6 +108,9 @@ namespace DotNetOpenAuth.Yadis { /// Applies the HTML response to the object. /// </summary> /// <param name="response">The initial response.</param> + /// <returns> + /// A task that completes with the asynchronous operation. + /// </returns> private async Task ApplyHtmlResponseAsync(HttpResponseMessage response) { Requires.NotNull(response, "response"); |