Click here to Skip to main content
15,886,724 members
Articles / Programming Languages / C#

Recovering your application from unhandled exception in .NET

Rate me:
Please Sign up or sign in to vote.
4.00/5 (2 votes)
10 Jan 2011CPOL1 min read 14.2K   5   2
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)


Written By
Software Developer (Senior) Microsoft Corporation
India India
I work for Microsoft on MS technologies for application development. My interests include .net, WCF, Azure, Windows Phone, ASP.net, SL, WCF, WPF and many more.

You can visit my site at http://www.jebarson.info

Follow me on twitter @jebarson007

Comments and Discussions

 
Questionalso close after exceptionDlg.ShowDialog(); Pin
Member 1184698023-Jun-22 4:55
Member 1184698023-Jun-22 4:55 
Generalnot in multithreaded applications Pin
Ivan Ičin18-Jan-11 11:44
Ivan Ičin18-Jan-11 11:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.