在不终止应用程序的情况下处理全局异常?
我在我的代码中抛出了各种自定义异常。
其中一些是可以恢复的,所以我想要一个全局处理程序来捕获它们,显示警告,然后继续。
我发现 AppDomain.UnhandledException
事件有一个 IsTerminate
参数,但这是只读的。
是否有一些事件或其他方法可以全局捕获异常,仍然可以让您处理它们并继续?
(这是在 Forms 中,但我对 WPF 解决方案也很感兴趣)
I throw various custom exceptions thoughout my code.
Some of these are recoverable from, so I want a global handler to catch them, display a warning, then carry on.
I have found the AppDomain.UnhandledException
event which has an IsTerminating
argument, but this is read only.
Is there some event or other way to catch exceptions globally that still lets you handle them and carry on?
(This is in Forms, but I'd be interesting in a WPF solution too)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 global.asax 和
事件来捕获页面上未捕获的错误。
在此范围内,您可以使用多种方法,但其中一种方法如下所示:
或类似的方法
You could use the global.asax and the
Event to catch errors which aren't caught on the page.
Within this, you could use a number of methods, but one such way would be something like this:
Or something similar
尝试类似的操作:
没有注意到 winforms,我已经很长时间没有做过表单了,所以这是 WPF,可能有效或可能需要调整。
Try something like:
Didn't notice winforms, I haven't done forms in a long time so this is WPF, might work or might need to be tweaked.
已经找到解决办法了。使用
Application.ThreadException
而不是AppDomain.UnhandledException
。但您还必须告诉它在 UI 线程上也给出异常:Have found the solution. Use
Application.ThreadException
instead ofAppDomain.UnhandledException
. But you must also tell it to give exceptions on the UI thread too:这是一个旧线程,但 Dispatcher.UnhandledException 事件在其事件参数上有一个 Handled 参数,您可以使用该参数来阻止应用程序关闭。
This is an old thread, but the Dispatcher.UnhandledException event has a Handled parameter on it's event args that you can use to stop the application from shutting down.