在 CurrentDomain_UnhandledException 中重新抛出异常?
当我的应用程序完全崩溃时,我不希望能够记录它来检查之后发生了什么。 如果我想继续像未被捕获一样,在 CurrentDomain_UnhandledException
事件中重新抛出是否正确?我不想让我的代码继续,因为我不知道它处于什么状态。
那么我应该这样做:
static void CurrentDomain_UnhandledException(
object sender,
UnhandledExceptionEventArgs e)
{
if (logger.IsFatalEnabled)
logger.Fatal("A fatal unhandled error occurred.",
(Exception)e.ExceptionObject);
throw (Exception)e.ExceptionObject;
}
还是这样?
static void CurrentDomain_UnhandledException(
object sender,
UnhandledExceptionEventArgs e)
{
if (logger.IsFatalEnabled)
logger.Fatal("A fatal unhandled error occurred.",
(Exception)e.ExceptionObject);
}
When my app crashes totally, I wan't to be able to log that to check what happened after.
If I want to continue like it was uncaught, is it correct to rethrow in the CurrentDomain_UnhandledException
event? I don't to be let my code continue as I do not know what state it is in.
So should I do this:
static void CurrentDomain_UnhandledException(
object sender,
UnhandledExceptionEventArgs e)
{
if (logger.IsFatalEnabled)
logger.Fatal("A fatal unhandled error occurred.",
(Exception)e.ExceptionObject);
throw (Exception)e.ExceptionObject;
}
or this?
static void CurrentDomain_UnhandledException(
object sender,
UnhandledExceptionEventArgs e)
{
if (logger.IsFatalEnabled)
logger.Fatal("A fatal unhandled error occurred.",
(Exception)e.ExceptionObject);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论