これまで、プログラムへのApplication.Run
エントリポイントのProgram.cs
の周りにtry/catchブロックを配置しました。これにより、デバッグモードですべての例外が十分にキャッチされますが、デバッグモードなしでプログラムを実行すると、例外は処理されなくなります。未処理の例外ボックスが表示されます。
私はこれが起こることを望まない。非デバッグモードで実行しているときにすべての例外をキャッチする必要があります。プログラムには複数のスレッドがあり、できればそれらからのすべての例外は同じハンドラーによってキャッチされます。 DBに例外を記録します。これを行う方法についてアドバイスはありますか?
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")) { ... }
デバッグ時に例外をキャッチしないようにします。
NET 4では、特定の例外は デフォルトではもうキャッチされません; これらは、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;
}
素敵な例は、 http://www.csharp-examples.net/catching-unhandled-exceptions/ にあります。基本的に、メインを次のように変更します。
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");
}
そのために NBug ライブラリを使用できます。このような最小限のセットアップで:
NBug.Settings.Destination1 = "Type=Mail;[email protected];[email protected];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());