Alright, this is an easy one:
What's the difference between
Application.ThreadExceptionandAppDomain.CurrentDomain.UnhandledException?Do I need to handle both?
Thanks!
|
Alright, this is an easy one:
Thanks!
| ||||
|
feedback
|
|
Application.ThreadException is specific to Windows Forms. Winforms runs event handlers in response to messages sent to it by Windows. The Click event for example, I'm sure you know them. If such an event handler throws an exception then there's a back-stop inside the Winforms message loop that catches that exception. That backstop fires the Application.ThreadException event. If you don't override it, the user will get a ThreadExceptionDialog. Which allows her to ignore the exception and keep running your program. Not a great idea btw. You can disable this behavior by calling Application.SetUnhandledExceptionMode() in the Main() method in Program.cs. Without that backstop in place, the usual thing happens when a thread dies from an unhandled exception: AppDomain.UnhandledException runs and the program terminates. Fwiw: "ThreadException" was a very poor name choice. It has nothing to do with threads. | ||||
|
feedback
|
|
In applications that use Windows Forms, unhandled exceptions in the main application thread cause the Starting with Visual Studio 2005, the Visual Basic application framework provides another event for unhandled exceptions in the main application thread -
To catch exceptions that occur in threads not created and owned by Windows Forms, use the Starting with the .NET 4, this event is not raised for exceptions that corrupt the state of the process, such as stack overflows or access violations, unless the event handler is security-critical and has the | ||||
|
feedback
|
|
OK - I had it in front of me, this bit of code from msdn is pretty self-explanatory:
| |||||
feedback
|
|
Well, ThreadException occurs due to a problem with your thread, the Unhandled Exception is fired if you code throws an exception that is not handled. Easist way to cause the second one is to create an app with no try...catch blocks and throw an exception. Now if you need insurance you can handle them both, however if you capture and handle your exceptions correctly then you should not need the UnhandledException handler as it's kind of like a catch all. | |||
feedback
|