检测ASP.NET MVC中的中止请求

时间:2011-02-10 22:04:22

标签: asp.net-mvc asynchronous

在ASP.NET MVC的异步控制器中,有没有办法判断客户端是否/何时中止请求?

[NoAsyncTimeout]
public void IndexAsync() {
  var source = new CancellationTokenSource();

  Task.Factory.StartNew(() => {
    while (true) {
      if (source.Token.IsCancellationRequested) {
        AsyncManager.Finish();
        return;
      }

      Response.Write(".");
      Thread.Sleep(1000);
    }
  }, source.Token);

  // Is there any way to do this?
  Request.Aborted += (sender, e) => source.Cancel();

  AsyncManager.OutstandingOperations.Increment();
}

2 个答案:

答案 0 :(得分:8)

使用

怎么样?
HttpContext.Current.Response.IsClientConnected

从一个非常基本的测试来看,这似乎不适用于中止的ajax请求。 MSDN表明应该这样做。

答案 1 :(得分:2)

尝试

CancellationToken clientDisconnectedToken = HttpContext.Response.ClientDisconnectedToken;