在ASP.NET MVC中的異步控制器中,有什麼方法可以告訴客戶端是否/何時中止請求?檢測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();
}
[檢測異步客戶端斷開連接在ASP.NET MVC]的可能重複(http://stackoverflow.com/questions/4772597/detecting-async-client-disconnect-in-asp- net-mvc)我剛剛也發現了這個問題,它也會回答你的問題以及其他一些信息。 – 2011-02-10 22:08:35