<Member Name="SetSwitch(System.String,System.Boolean)" />
<Member Name="TryGetSwitch(System.String,System.Boolean@)" />
<Member Name="GetData(System.String)" />
+ <Member MemberType="Event" Name="UnhandledException" />
</Type>
<Type Name="System.ApplicationException">
<Member Name="#ctor" />
return AppDomain.CurrentDomain.GetData(name);
}
+ public static event UnhandledExceptionEventHandler UnhandledException
+ {
+ [System.Security.SecurityCritical]
+ add
+ {
+ AppDomain.CurrentDomain.UnhandledException += value;
+ }
+
+ [System.Security.SecurityCritical]
+ remove
+ {
+ AppDomain.CurrentDomain.UnhandledException -= value;
+ }
+ }
+
#region Switch APIs
static AppContext()
{