“连接超时”是一种什么样的异常? - ASP.NET
我正在开发一个与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的抛出异常是 TimeoutException。默认消息是
操作已超时
来自 MSDN:
The correct one to throw is TimeoutException. The default message is
The operation has timed-out
From MSDN: