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
exceptionExceptionException information.
additionalInfostringAdditional information.
canContinueboolWhether 'Continue' button is visible.
canQuitboolWhether 'Quit' button is visible.
onCloseAction<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)