summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/ProtocolFaultResponseException.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-01-23 21:50:40 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2013-01-23 21:50:40 -0800
commit98976665f90b20e4757e932ce3a33268f7e1daa6 (patch)
treeeeefb570e357a608dbe8a20ab1a033233cc65a7a /src/DotNetOpenAuth.Core/Messaging/ProtocolFaultResponseException.cs
parentb16591e45dd70602b1899d760200e72fd6d5eaec (diff)
downloadDotNetOpenAuth-98976665f90b20e4757e932ce3a33268f7e1daa6.zip
DotNetOpenAuth-98976665f90b20e4757e932ce3a33268f7e1daa6.tar.gz
DotNetOpenAuth-98976665f90b20e4757e932ce3a33268f7e1daa6.tar.bz2
Fixed a bunch more samples.
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/ProtocolFaultResponseException.cs')
-rw-r--r--src/DotNetOpenAuth.Core/Messaging/ProtocolFaultResponseException.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/ProtocolFaultResponseException.cs b/src/DotNetOpenAuth.Core/Messaging/ProtocolFaultResponseException.cs
index c77577b..9460417 100644
--- a/src/DotNetOpenAuth.Core/Messaging/ProtocolFaultResponseException.cs
+++ b/src/DotNetOpenAuth.Core/Messaging/ProtocolFaultResponseException.cs
@@ -65,7 +65,7 @@ namespace DotNetOpenAuth.Messaging {
/// Creates the HTTP response to forward to the client to report the error.
/// </summary>
/// <returns>The HTTP response.</returns>
- public Task<HttpResponseMessage> CreateErrorResponse(CancellationToken cancellationToken) {
+ public Task<HttpResponseMessage> CreateErrorResponseAsync(CancellationToken cancellationToken) {
return this.channel.PrepareResponseAsync(this.ErrorResponseMessage, cancellationToken);
}
}