There is a <runtime> element in the app.config file of the .NET application that allows you to configure various types of CLR behavior, usually for backward compatibility with traditional behavior.
For instance:
<configuration> <runtime> <legacyUnhandledExceptionPolicy enabled="true"/> <legacyCorruptedStateExceptionsPolicy enabled="true"/> </runtime> </configuration>
I came across several of these settings and hoped to find comprehensive documentation of all the available settings on MSDN so that I could see what else was available. However, I could not find any central list of all the available runtime configuration options, and the app.config scheme would not help either, since the <runtime> element is listed as "something is coming" (for that, the proof, I think )
Can someone point me to some central documentation, preferably MSDN, which lists all the available parameters for the runtime element in app.config, preferably including .NET 4.0?
source share