summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-06-09 09:23:18 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-06-09 09:23:18 -0700
commitf5c6fd4e9a5bdd718f00008db63d498e0df8aea4 (patch)
treeda64fbcfc14af5a92b4b8d45e48cc9ca8612fb5d /src
parenta92b58cc183454f1c062606ed14c21d26c447066 (diff)
downloadDotNetOpenAuth-f5c6fd4e9a5bdd718f00008db63d498e0df8aea4.zip
DotNetOpenAuth-f5c6fd4e9a5bdd718f00008db63d498e0df8aea4.tar.gz
DotNetOpenAuth-f5c6fd4e9a5bdd718f00008db63d498e0df8aea4.tar.bz2
Removes TODO
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs b/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs
index 75dd23c..0ec490a 100644
--- a/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs
+++ b/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs
@@ -2062,7 +2062,7 @@ namespace DotNetOpenAuth.Messaging {
/// </summary>
/// <param name="context">The context in which the result is executed. The context information includes the controller, HTTP content, request context, and route data.</param>
public override void ExecuteResult(ControllerContext context) {
- // TODO 5.0: fix this to be asynchronous.
+ // Sadly, MVC doesn't support writing to the response stream asynchronously.
this.response.SendAsync(context.HttpContext).GetAwaiter().GetResult();
}
}