“连接超时”是一种什么样的异常? - ASP.NET

发布于 2024-12-08 18:44:21 字数 99 浏览 0 评论 0原文

我正在开发一个与 Web 服务通信的 ASP.NET 应用程序。然而最近,服务经常出现中断。我不想抛出一个通用的异常,而是一个非常具体的异常。处理“连接超时”的异常名称是什么。谢谢你!

I'm working on an asp.net application which communicates with web services. However quite often of late, the services have been down. I don't want to throw a generic Exception but rather a very specific one. What is the Exception name that handles 'connection timed out'. Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你在看孤独的风景 2024-12-15 18:44:21

正确的抛出异常是 TimeoutException。默认消息是操作已超时

来自 MSDN:

为进程或操作分配的时间已过期时引发的异常。

The correct one to throw is TimeoutException. The default message is The operation has timed-out

From MSDN:

The exception that is thrown when the time allotted for a process or operation has expired.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文