带有超时的 ASP.NET MVC 2 异步操作
我想在 ASP.NET MVC 2 中编写一个异步操作,最多等待 5 秒才能发生事件。如果事件发生,则服务器响应结果,否则请求超时。
实现这一目标的最佳方法是什么?
I want to write an asynchronous action in ASP.NET MVC 2 that waits up to 5 seconds for an event to occur. If the event occurs then the server responds with a result, otherwise the request times out.
What is the best way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 [AsyncTimeout] 属性< /a>.如果异步操作未在指定时间内完成,则会抛出 TimeoutException。您可以使用异常过滤器(如 [HandleError])来监视这些异常并适当地处理它们。
Use the [AsyncTimeout] attribute. If the asynchronous action hasn't completed within the specified time, a TimeoutException will be thrown. You can use an exception filter (like [HandleError]) to watch for these exceptions and handle them appropriately.
您可以查看异步控制器。
You may take a look at asynchronous controllers.