Related to this question, I would like to force CLR to let my .NET 4.5.2 app catch Corrupted State Exceptions, for the sole purpose of logging them and then terminating the application. What's the correct way to do this, if I have catch (Exception ex)
at several places around the app?
So, after I specify the <legacyCorruptedStateExceptionsPolicy>
attribute, if I understood correctly, all the catch (Exception ex)
handlers will catch exceptions like AccessViolationException
and happily continue.
Yeah, I know catch (Exception ex)
is a Bad Idea™, but if CLR would at least put the correct stack trace into the Event Log, I would be more than happy to explain to the customer that his server app failing fast at 1AM and being offline for the night is a good thing. But unfortunately, CLR logs an unrelated exception into the Event Log and then closes the process so that I cannot find out what actually happened.
The question is, how to make this happen, process wide:
if the exception thrown is a Corrupted State Exception:
- write the message to the log file
- end the process
(Update)
In other words, this would probably work for most exceptions in a simple app:
[HandleProcessCorruptedStateExceptions]
[SecurityCritical]
static void Main() // main entry point
{
try
{
}
catch (Exception ex)
{
// this will catch CSEs
}
}
But, it won't work for:
- Unhandled app domain exceptions (i.e. thrown on non-foreground threads)
- Windows Service apps (which don't have an actual
Main
entry point)
So it seems like <legacyCorruptedStateExceptionsPolicy>
is the only way to make this work, in which case I don't know how to fail after logging the CSE?
AppDomain.CurrentDomain.UnhandledException
handler method with[HandleProcessCorruptedStateExceptions]
, and it will catch CSEs properly? – Earthward