捕获完全意外的错误
本文关键字:错误 意外 | 更新日期: 2023-09-27 17:58:15
我有一个ErrorRecorder应用程序,它会打印出错误报告,并询问用户是否要将该报告发送给我。
然后,我有了主应用程序。如果发生错误,它会将错误报告写入文件,并要求ErrorRecorder打开该文件以向用户显示错误报告。
所以我使用Try/Catch来捕捉我的大部分错误。
然而,如果发生了一个完全出乎意料的错误并关闭了我的程序,该怎么办。
有没有类似的Global/Override方法或类似的方法,它告诉程序"如果发生意外错误,在关闭之前,调用"ErrorRecorderView()"方法"
我认为这就是您所追求的-您可以在应用程序域级别处理异常,即在整个程序中处理异常
http://msdn.microsoft.com/en-GB/library/system.appdomain.unhandledexception.aspx
using System;
using System.Security.Permissions;
public class Test
{
[SecurityPermission(SecurityAction.Demand, Flags = SecurityPermissionFlag.ControlAppDomain)]
public static void Example()
{
AppDomain currentDomain = AppDomain.CurrentDomain;
currentDomain.UnhandledException += new UnhandledExceptionEventHandler(MyHandler);
try
{
throw new Exception("1");
}
catch (Exception e)
{
Console.WriteLine("Catch clause caught : " + e.Message);
}
throw new Exception("2");
// Output:
// Catch clause caught : 1
// MyHandler caught : 2
}
static void MyHandler(object sender, UnhandledExceptionEventArgs args)
{
Exception e = (Exception)args.ExceptionObject;
Console.WriteLine("MyHandler caught : " + e.Message);
}
public static void Main()
{
Example();
}
}