Следует использовать оба AppDomain.UnhandledException и применение.DispatcherUnhandledException?
после прочтения некоторых отличных сообщений о разнице между AppDomain.UnhandledException и применение.DispatcherUnhandledException, похоже, что я должен обрабатывать оба. Это связано с тем, что значительно более вероятно, что пользователь может восстановить исключение, вызванное основным потоком пользовательского интерфейса (т. е. приложением.DispatcherUnhandledException). Правильно?
кроме того, должен ли я также дать пользователю возможность продолжить программу для обоих, или просто Приложение.DispatcherUnhandledException?
пример кода ниже обрабатывает оба AppDomain.UnhandledException и применение.DispatcherUnhandledException, и оба дают пользователю возможность попытаться продолжить, несмотря на исключение.
[спасибо, и часть кода ниже снята с других ответов]
App.в XAML
<Application x:Class="MyProgram.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Startup="App_StartupUriEventHandler"
Exit="App_ExitEventHandler"
DispatcherUnhandledException="AppUI_DispatcherUnhandledException">
<Application.Resources>
</Application.Resources>
</Application>
App.код XAML.ЗС [отредактировано]
/// <summary>
/// Add dispatcher for Appdomain.UnhandledException
/// </summary>
public App()
: base()
{
this.Dispatcher.UnhandledException += OnDispatcherUnhandledException;
}
/// <summary>
/// Catch unhandled exceptions thrown on the main UI thread and allow
/// option for user to continue program.
/// The OnDispatcherUnhandledException method below for AppDomain.UnhandledException will handle all other exceptions thrown by any thread.
/// </summary>
void AppUI_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
{
if (e.Exception == null)
{
Application.Current.Shutdown();
return;
}
string errorMessage = string.Format("An application error occurred. If this error occurs again there seems to be a serious bug in the application, and you better close it.nnError:{0}nnDo you want to continue?n(if you click Yes you will continue with your work, if you click No the application will close)", e.Exception.Message);
//insert code to log exception here
if (MessageBox.Show(errorMessage, "Application User Interface Error", MessageBoxButton.YesNoCancel, MessageBoxImage.Error) == MessageBoxResult.No)
{
if (MessageBox.Show("WARNING: The application will close. Any changes will not be saved!nDo you really want to close it?", "Close the application!", MessageBoxButton.YesNoCancel, MessageBoxImage.Warning) == MessageBoxResult.Yes)
{
Application.Current.Shutdown();
}
}
e.Handled = true;
}
/// <summary>
/// Catch unhandled exceptions not thrown by the main UI thread.
/// The above AppUI_DispatcherUnhandledException method for DispatcherUnhandledException will only handle exceptions thrown by the main UI thread.
/// Unhandled exceptions caught by this method typically terminate the runtime.
/// </summary>
void OnDispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
{
string errorMessage = string.Format("An application error occurred. If this error occurs again there seems to be a serious bug in the application, and you better close it.nnError:{0}nnDo you want to continue?n(if you click Yes you will continue with your work, if you click No the application will close)", e.Exception.Message);
//insert code to log exception here
if (MessageBox.Show(errorMessage, "Application UnhandledException Error", MessageBoxButton.YesNoCancel, MessageBoxImage.Error) == MessageBoxResult.No)
{
if (MessageBox.Show("WARNING: The application will close. Any changes will not be saved!nDo you really want to close it?", "Close the application!", MessageBoxButton.YesNoCancel, MessageBoxImage.Warning) == MessageBoxResult.Yes)
{
Application.Current.Shutdown();
}
}
e.Handled = true;
}
2 ответов
-
AppDomain.CurrentDomain.UnhandledException
теоретически улавливает все исключения во всех потоках appdomain. Однако я счел это весьма ненадежным. Application.Current.DispatcherUnhandledException
ловит все исключения в потоке пользовательского интерфейса. Это, похоже, работает надежно и заменитAppDomain.CurrentDomain.UnhandledException
обработчик в потоке пользовательского интерфейса (имеет приоритет). Использоватьe.Handled = true
чтобы сохранить приложение работает.для перехвата исключений в других потоках (в лучшем случае они обрабатываются в собственном потоке), I найдена система.Нарезка резьбы.Задачи.Задача (только .NET 4.0 и выше) для низкого обслуживания. Обрабатывать исключения в задачах с помощью метода
.ContinueWith(...,TaskContinuationOptions.OnlyOnFaulted)
. Смотрите мой ответ здесь для сведения.
An AppDomain.UnhandledException
проводник подключается так:
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
но я не мог найти способ пометить, как обрабатывается в обработчике-так что это всегда приводит к закрытию приложения независимо от того, что вы делаете. Поэтому я не думаю, что это много пользы.
лучше обрабатывать Application.Current.DispatcherUnhandledException
и проверить на CommunicationObjectFaultedException
- поскольку вы можете восстановиться от этого, просто повторно инициализируя свой прокси - сервер-точно так же, как и при первоначальном подключении. Например:
void Current_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e) {
if (e.Exception is CommunicationObjectFaultedException) { //|| e.Exception is InvalidOperationException) {
Reconnect();
e.Handled = true;
}
else {
MessageBox.Show(string.Format("An unexpected error has occured:\n{0}.\nThe application will close.", e.Exception));
Application.Current.Shutdown();
}
}
public bool Reconnect() {
bool ok = false;
MessageBoxResult result = MessageBox.Show("The connection to the server has been lost. Try to reconnect?", "Connection lost", MessageBoxButton.YesNo);
if (result == MessageBoxResult.Yes)
ok = Initialize();
if (!ok)
Application.Current.Shutdown();
}
где Initialize имеет ваш начальный экземпляр прокси/код подключения.
в коде, который вы разместили выше, я подозреваю, что вы обрабатываете DispatcherUnhandledException
два раза - путем подключения обработчика в xaml и в коде.