微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net-mvc-4 – 从ASP.NET MVC Action调用ConfigureAwait

正在进行演示,并认为以下内容将失败,因为ActionResult不会在正确的上下文中返回.我加载测试它与VS并没有错误.我已经调试了,知道它是切换线程.所以似乎是合法的代码.

ASP.NET不关心客户端应用程序的上下文或线程吗?如果是这样,AspNetSynchronizationContext的目的是什么?我不觉得在操作本身放置一个ConfigureAwait.有些东西似乎错了.有人可以解释吗

public async Task<ActionResult> AsyncWithBackendtest()
    {
        var result = await BackendCall().ConfigureAwait(false);
        var server = HttpContext.Server;
        HttpContext.Cache["hello"] = "world";
        return Content(result);
    }

解决方法

ASP.NET没有许多客户端应用程序需要“UI线程”(由于下面的UI框架).该上下文不是关于线程亲和性,而是用于跟踪页面进度(以及其他事情,例如携带请求的安全上下文)

Stephen Toub mentions this in an MSDN article

Windows Forms isn’t the only environment that provides a
SynchronizationContext-derived class. ASP.NET also provides one,
AspNetSynchronizationContext,though it’s not public and is not meant
for external consumption. Rather,it is used under the covers by
ASP.NET to facilitate the asynchronous pages functionality in ASP.NET
2.0 (for more information,see msdn.microsoft.com/msdnmag/issues/05/10/WickedCode). This
implementation allows ASP.NET to prevent page processing completion
until all outstanding asynchronous invocations have been completed
.

Stephen Cleary’s article from last year提供了有关同步上下文的更多细节.

图4特别表明它没有WinForms / WPF的“特定线程”行为,但整个事情是一个很好的阅读.

If multiple operations complete at once for the same application,AspNetSynchronizationContext will ensure that they execute one at a time. They may execute on any thread,but that thread will have the identity and culture of the original page.

原文地址:https://www.jb51.cc/aspnet/250652.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐