アプリケーション エラー modname = awesomium.dll でクラッシュすることがある WPF アプリを作成しました。
app.xaml.cs にグローバルな catch と try ブロックがあります
public App()
: base()
{
this.Dispatcher.UnhandledException += OnDispatcherUnhandledException;
AppDomain currentDomain = AppDomain.CurrentDomain;
currentDomain.UnhandledException += OnAppDomainUnhandledException;
}
しかし、 awesomuim.dll エラーはこれをバイパスし、関係なくアプリをクラッシュさせるようです
XP でのランダム クラッシュを停止する方法、または Awesomium のアプリケーション全体のエラー キャッチャーを追加する方法を知っていますか?