How can I stop the JIT debugger entering the wcf emergency service?

I have my own wcf web service with UnhandledExceptionEventHandler logging any unhandled exceptions. This happens often enough, as I deal with a third-party technology provider that is a little flawed to be polite ...

My question is: is it possible to stop the JIT debugger called after handling the unhandled exception? I do everything in my power, with an unhandled exception; I know that the service is bombing, but the fact that it was bombed is recorded in our db events. Is there a compiler that I can install?

+6
source share
1 answer

According to MSDN, you can enable / disable JIT debugging using the "Options" dialog box in Visual Studio - http://msdn.microsoft.com/en-us/library/5hs4b7a6.aspx . It seems there is also a registry hack the same. NTN

+1
source

Source: https://habr.com/ru/post/916360/


All Articles