8 references to UnhandledExceptionMode
System.Windows.Forms (7)
System\Windows\Forms\Application.cs (2)
1445
public static void SetUnhandledExceptionMode(
UnhandledExceptionMode
mode)
1467
public static void SetUnhandledExceptionMode(
UnhandledExceptionMode
mode, bool threadScope)
System\Windows\Forms\NativeWindow.cs (5)
781
internal static void SetUnhandledExceptionModeInternal(
UnhandledExceptionMode
mode, bool threadScope)
795
case
UnhandledExceptionMode
.Automatic:
806
case
UnhandledExceptionMode
.ThrowException:
817
case
UnhandledExceptionMode
.CatchException:
829
throw new InvalidEnumArgumentException(nameof(mode), (int)mode, typeof(
UnhandledExceptionMode
));
WinFormsControlsTest (1)
Program.cs (1)
16
Application.SetUnhandledExceptionMode(
UnhandledExceptionMode
.ThrowException);