Method ShowExceptionWindow
ShowExceptionWindow(Exception, string?, bool, bool, Action<bool>?)
Shows ThreadExceptionWindow on the screen.
public static void ShowExceptionWindow(Exception exception, string? additionalInfo = null, bool canContinue = true, bool canQuit = true, Action<bool>? onClose = null)
Parameters
exception
ExceptionException information.
additionalInfo
stringAdditional information.
canContinue
boolWhether 'Continue' button is visible.
canQuit
boolWhether 'Quit' button is visible.
onClose
Action<bool>Action to call when dialog is closed.
ShowExceptionWindow(Exception, Action<bool>?)
Shows ThreadExceptionWindow on the screen.
public static void ShowExceptionWindow(Exception exception, Action<bool>? onClose)