在 ASP.NET MVC 2 异步控制器中,操作筛选器是否异步执行?

发布于 2024-11-05 01:58:31 字数 633 浏览 3 评论 0原文

在 ASP.NET MVC 2 异步控制器中,我们可以执行以下操作:

public class SomeController : AsyncController
{
    [Blurb]
    public void FooAsync()
    {
        this.AsyncManager.OutstandingOperations.Increment();

        Task.Factory.StartNew(
            () =>
            {
                this.AsyncManager.Parameters["result"] = new BazResult();
                this.AsyncManager.OutstandingOperations.Decrement();
            });
    }

    public ActionResult FooCompleted(ActionResult result)
    {
        return result;
    }
}

我的问题是,在这种情况下,操作过滤器 "Blurb" 是否异步执行?换句话说,它的同步性质是否自动包装到异步调用中?

In ASP.NET MVC 2 asynchronous controllers, we can do something like this:

public class SomeController : AsyncController
{
    [Blurb]
    public void FooAsync()
    {
        this.AsyncManager.OutstandingOperations.Increment();

        Task.Factory.StartNew(
            () =>
            {
                this.AsyncManager.Parameters["result"] = new BazResult();
                this.AsyncManager.OutstandingOperations.Decrement();
            });
    }

    public ActionResult FooCompleted(ActionResult result)
    {
        return result;
    }
}

My question is, does the action filter "Blurb" in this case execute asynchronously? In other words, is its synchronous nature automatically wrapped into an asynchronous call?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月依秋水 2024-11-12 01:58:31

我查看了 AsyncControllerActionInvoker 的内部情况,看起来它确实将它们包装到一组异步调用和延续中。它调用 BeginInvokeActionMethodWithFilters,进而设置 InvokeActionMethodFilterAsynchronously

对于那些好奇的人,源代码位于 codeplex 上。

I took a look under the covers at AsyncControllerActionInvoker and it looks like it does indeed wrap them into a set of asynchronous calls and continuations. It makes a call to BeginInvokeActionMethodWithFilters which in turn sets up InvokeActionMethodFilterAsynchronously.

For those who are curious, the source is on codeplex.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文