Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Recovering your application from unhandled exception in .NET

4.00/5 (2 votes)
10 Jan 2011CPOL1 min read 14.4K  
Recovering your application from unhandled exception in .NET

Exception handling is one of the nightmares and the best practice for any programmer. But doesn't matter how good the programmer is, there will be always a chance of unhandled exception daunting the users. .NET 2.0+ however has a better option of handling it which is focused on recovering your application on the next start.

AppDomain.UnhandledException is an event which will allow you to handle any unhandled exceptions that would occur anywhere on your application. When you define the delegate for the above said event, it will allow you to write the code to save the current state of the application or do any custom operations so that the crash can be recovered during next recovery. However, if you wish to give the user the control of handling the situation, it can be done using a exception dialog.

Now let's get into business.

C#
/// 
/// The main entry point for the application.
/// 
[STAThread]
static void Main()
{
    AppDomain.CurrentDomain.UnhandledException +=
         new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
    Application.SetUnhandledExceptionMode(
        UnhandledExceptionMode.CatchException, true);
     Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    // Check for application crash and recover accordingly here.
    Application.Run(new Form1());
}

/// 
/// Handles the UnhandledException event of the CurrentDomain control.
/// 
/// <param name="sender">The source of the event.
/// <param name="args">The 
/// instance containing the event data.
static void CurrentDomain_UnhandledException(
             object sender, UnhandledExceptionEventArgs args)
{
    // Write your code to dump the crash information that can be used on recovery
     // Below code will give the user the option whether to continue
     // or to exit the application
    ThreadExceptionDialog exceptionDlg =
              new ThreadExceptionDialog((Exception)args.ExceptionObject);
    exceptionDlg.ShowDialog();
    Application.Exit();
}

If you are looking into the handling of unexpected error, you can opt for not giving the user an option to choose what the application has to do and simply log the application state and close the application and while the user starts the next time, you can recover it. This is similar to the Microsoft Word approach.

Or you can opt for the user to choose whether to continue or quit the application after logging the details using an exception dialog. This can be used where the application is not processing any critical data and can survive the crash.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)