开发者

What controls the default UnhandledException policy in WinForms?

I am currently maintaining a WinForms application that listens to the Application.ThreadException event to trap unhandled exceptions on GUI threads.

Now things have been working as expected until recently. But lately, this event is no longer being raised appropriately on some production boxes; the app skips the handler and just crashes when there is an unhandled exception on a GUI thread. Strangely, I am able to reproduce this on my (new) dev box, but there are some machines on which the event is in fact开发者_运维技巧 being raised correctly.

I am able to make the behaviour consistent by explicitly setting the policy like this:

Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);

But I am curious to know what controls the default policy. MSDN makes vague allusions to an "application configuration file", but there is no such policy-setting in our app.config or any other configuration file that I know of.

What is causing this inconsistent behaviour?


There's only one that I can think of. The exception handling logic is aware whether or not a debugger is attached. That matters when the default UnhandledExceptionMode.Automatic is in effect. When a debugger is attached, the Winforms message loop does not try to catch exceptions. Which is fairly important, it would make debugging exceptions rather difficult. The debugger only steps in and displays the Exception Assistant when an exception is unhandled.

Using UnhandledExceptionMode.CatchException is okay, it makes exception handling consistent. In other words, it will behave on your dev machine exactly the same as it does on your client's machine. But you'll now need Debug + Exceptions, Thrown box to troubleshoot the code. That always makes the debugger stop when the exception is thrown, regardless of whether it is caught or not.


I've also begun to experience this. We were trying to debug exceptions that our testers were seeing and couldn't reproduce on our own machines. I turned on the stop-on-exceptions behavior in VS and viola, the exceptions were actually happening. However, if I were to F11 to continue, I'd see that the exceptions are just silently ignored.

I have two machines. One machine is Win 7 64 bit, has VS 2008 and VS 2010 installed, and so .Net 4.0 is installed. The application we're testing is .Net 3.5 and debugged in VS 2008.

The other machine is Win XP 32 bit, plain jane VS 2008 and .Net 3.5.

The Win 7 machine silently ignores. The XP machine loudly complains. I think having .Net 4.0 installed changed some default policy.

I've worked around it by calling

Application.SetUnhandledExceptionMode( UnhandledExceptionMode.CatchException );
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜