gpt4 book ai didi

c# - 在 ASP.NET MVC 中检测异步客户端断开连接

转载 作者:可可西里 更新时间:2023-11-01 07:50:21 24 4
gpt4 key购买 nike

给定一个异步 Controller :

public class MyController : AsyncController 
{
[NoAsyncTimeout]
public void MyActionAsync() { ... }

public void MyActionCompleted() { ... }
}

假设 MyActionAsync 启动一个需要几分钟的过程。如果用户现在转到 MyAction 操作,浏览器将等待连接打开。如果用户关闭浏览器,则连接关闭。是否可以检测到服务器上发生这种情况的时间(最好是在 Controller 内部)?如果是这样,如何?我已经尝试覆盖 OnException 但在这种情况下永远不会触发。

注意:我非常感谢下面提供的有用答案,但这个问题的关键方面是我正在使用 AsyncController。这意味着 HTTP 请求仍处于打开状态(它们像 COMET 或 BOSH 一样长期存在)这意味着它是实时套接字连接。当此实时连接终止(即“连接由对等方重置”,TCP RST 数据包)时,为什么不能通知服务器?

最佳答案

我知道这个问题很老,但在我搜索相同答案时经常出现。以下详细信息仅适用于 .Net 4.5

HttpContext.Response.ClientDisconnectedToken是你想要的。那会给你一个 CancellationToken你可以传递给你的异步/等待调用。

public async Task<ActionResult> Index()
{
//The Connected Client 'manages' this token.
//HttpContext.Response.ClientDisconnectedToken.IsCancellationRequested will be set to true if the client disconnects
try
{
using (var client = new System.Net.Http.HttpClient())
{
var url = "http://google.com";
var html = await client.GetAsync(url, HttpContext.Response.ClientDisconnectedToken);
}
}
catch (TaskCanceledException e)
{
//The Client has gone
//you can handle this and the request will keep on being processed, but no one is there to see the resonse
}
return View();
}

您可以通过在函数开头放置断点然后关闭浏览器窗口来测试上面的代码段。


还有另一个片段,与您的问题没有直接关系,但同样有用...

您还可以使用 AsyncTimeout 对操作可以执行的时间量施加硬性限制。属性。要使用此功能,请添加类型为 CancellationToken 的附加参数。如果执行时间过长,此 token 将允许 ASP.Net 使请求超时。

[AsyncTimeout(500)] //500ms
public async Task<ActionResult> Index(CancellationToken cancel)
{
//ASP.Net manages the cancel token.
//cancel.IsCancellationRequested will be set to true after 500ms
try
{
using (var client = new System.Net.Http.HttpClient())
{
var url = "http://google.com";
var html = await client.GetAsync(url, cancel);
}
}
catch (TaskCanceledException e)
{
//ASP.Net has killed the request
//Yellow Screen Of Death with System.TimeoutException
//the return View() below wont render
}
return View();
}

您可以通过在函数的开头放置一个断点(从而使请求在遇到断点时花费超过 500 毫秒)然后让它运行来测试它。

关于c# - 在 ASP.NET MVC 中检测异步客户端断开连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4772597/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com