8 references to UnhandledExceptionMode
System.Windows.Forms (7)
System\Windows\Forms\Application.cs (2)
1436
public static void SetUnhandledExceptionMode(
UnhandledExceptionMode
mode)
1458
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)
12
Application.SetUnhandledExceptionMode(
UnhandledExceptionMode
.ThrowException);