如何在WinForms应用程序中创建捕获所有“未处理”异常的内容?

时间:2011-04-23 06:02:17

标签: c# winforms debugging unhandled-exception

到目前为止,我只是在程序的Application.Run入口点的Program.cs周围放置一个try / catch块。这会在调试模式下很好地捕获所有异常,但是当我在没有调试模式的情况下运行程序时,不再处理异常。我得到了未处理的异常框。

我不希望这种情况发生。我希望在非调试模式下运行时捕获所有异常。该程序有多个线程,最好是来自它们的所有异常都被同一个处理程序捕获;我想记录数据库中的异常。有没有人对如何做这个有任何建议?

4 个答案:

答案 0 :(得分:100)

查看ThreadException documentation

中的示例
public static void Main(string[] args)
{
   // Add the event handler for handling UI thread exceptions to the event.
    Application.ThreadException += new     
  ThreadExceptionEventHandler(ErrorHandlerForm.Form1_UIThreadException);

  // Set the unhandled exception mode to force all Windows Forms errors
  // to go through our handler.
  Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);

  // Add the event handler for handling non-UI thread exceptions to the event. 
  AppDomain.CurrentDomain.UnhandledException += new       
  UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
}

您可能还希望在调试时不捕获异常,因为这样可以更容易地进行调试。这有点像黑客,但为此你可以用

包装上面的代码
 if (!AppDomain.CurrentDomain.FriendlyName.EndsWith("vshost.exe")) { ... }

防止在调试时捕获异常。

答案 1 :(得分:26)

在NET 4中,某些异常是no longer caught by default;,这些异常往往是异常,表示可执行文件的(可能是致命的)损坏状态,例如AccessViolationException。

尝试在主方法前面使用[HandleProcessCorruptedStateExceptions]标记,例如

using System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptions

[HandleProcessCorruptedStateExceptions]
public static int Main()
{
    try
    {
        // Catch any exceptions leaking out of the program
        CallMainProgramLoop();
    }
    catch (Exception e) // We could be catching anything here
    {
        System.Console.WriteLine(e.Message);
        return 1;
    }
    return 0;
  } 

答案 2 :(得分:17)

A nice example can be found at http://www.csharp-examples.net/catching-unhandled-exceptions/ Basically, change your main to:

static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);

        Application.ThreadException += new ThreadExceptionEventHandler(Application_ThreadException);
        Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
        AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

        Application.Run(new Form1());
    }

    static void Application_ThreadException(object sender, ThreadExceptionEventArgs e)
    {
        MessageBox.Show(e.Exception.Message, "Unhandled Thread Exception");
    }

    static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
    {
        MessageBox.Show((e.ExceptionObject as Exception).Message, "Unhandled UI Exception");
    }

答案 3 :(得分:8)

您可以使用NBug库。使用这样的最小设置:

NBug.Settings.Destination1 = "Type=Mail;From=me@mycompany.com;To=bugtracker@mycompany.com;SmtpServer=smtp.mycompany.com;";
AppDomain.CurrentDomain.UnhandledException += NBug.Handler.UnhandledException;
Application.ThreadException += NBug.Handler.ThreadException;

您可以开始收集有关应用程序中所有未处理错误的信息,即使它已部署到客户端也是如此。如果您不想使用第三方库,则应附加到以下事件:

// These two should come before enabling visual styles or running the application
AppDomain.CurrentDomain.UnhandledException += ...
Application.ThreadException += ...
...
Application.Run(new Form1());