有没有办法在ASP.NET Web API beta中弄清楚HTTP请求是否被取消(由于任何其他原因而被用户中止)?我正在寻找机会有一种开箱即用的取消令牌,它会发出请求被中止的信号,因此长时间运行的操作也应该中止。
可能的相关问题 - CancellationTokenModelBinder类的用例。为取消令牌设置单独的绑定器的原因是什么?
答案 0 :(得分:8)
您可以不时检查Response.IsClientConnected
,看看浏览器是否仍然连接到服务器。
答案 1 :(得分:8)
我想总结一下。似乎有效的唯一方法是检查Response.IsClientConnected。 这里有关于舞台背后的一些技术细节: here和here 这种方法有一些缺陷:
最后,我想出了以下代码,将基于IsClientConnected的CancellationToken注入到Web API控制器中:
public class ConnectionAbortTokenAttribute : System.Web.Http.Filters.ActionFilterAttribute
{
private readonly string _paramName;
private Timer _timer;
private CancellationTokenSource _tokenSource;
private CancellationToken _token;
public ConnectionAbortTokenAttribute(string paramName)
{
_paramName = paramName;
}
public override void OnActionExecuting(System.Web.Http.Controllers.HttpActionContext actionContext)
{
object value;
if (!actionContext.ActionArguments.TryGetValue(_paramName, out value))
{
// no args with defined name found
base.OnActionExecuting(actionContext);
return;
}
var context = HttpContext.Current;
if (context == null)
{
// consider the self-hosting case (?)
base.OnActionExecuting(actionContext);
return;
}
_tokenSource = new CancellationTokenSource();
_token = _tokenSource.Token;
// inject
actionContext.ActionArguments[_paramName] = _token;
// stop timer on client disconnect
_token.Register(() => _timer.Dispose());
_timer = new Timer
(
state =>
{
if (!context.Response.IsClientConnected)
{
_tokenSource.Cancel();
}
}, null, 0, 1000 // check each second. Opts: make configurable; increase/decrease.
);
base.OnActionExecuting(actionContext);
}
/*
* Is this guaranteed to be called?
*
*
*/
public override void OnActionExecuted(System.Web.Http.Filters.HttpActionExecutedContext actionExecutedContext)
{
if(_timer != null)
_timer.Dispose();
if(_tokenSource != null)
_tokenSource.Dispose();
base.OnActionExecuted(actionExecutedContext);
}
}
答案 2 :(得分:0)
如果您将CancellationToken添加到控制器方法中,它将由框架自动注入,当客户端调用xhr.abort()时,令牌将自动取消
类似于
的东西public Task<string> Get(CancellationToken cancellationToken = default(CancellationToken))
对于MVC,您也可以参考
HttpContext.Current.Response.IsClientConnected
HttpContext.Response.ClientDisconnectedToken
对于.NetCore
services.AddTransient<ICustomInterface>(provider => {
var accessor = provider.GetService<IHttpContextAccessor>);
accessor.HttpContext.RequestAborted;
});