当我的应用程序完全崩溃时,我无法记录它以检查之后发生的事情。如果我想像没有被抓住一样继续,在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);
}