C# Class Warehouse.ErrorMessageBox

Inheritance: Json
Mostra file Open project: Starcounter/Warehouse

Public Methods

Method Description
Show ( Exception e, System.Action callback = null ) : void

Show Error Message

This should only be used for system error message. Not for user behavior errors.

Show ( Response response, System.Action callback = null ) : void

Show Error Message

This should only be used for system error message. Not for user behavior errors.

Show ( string message, System.Action callback = null ) : void

Show Error Message

This should only be used for system error message. Not for user behavior errors.

Show ( string title, string message, System.Action callback = null ) : void

Show Error Message

This should only be used for system error message. Not for user behavior errors.

Show ( string title, string text, string stackTrace, string helpLink, ushort statusCode, System.Action callback = null ) : void

Private Methods

Method Description
Handle ( Input action ) : void
HideWindow ( ) : void
InvokeCallback ( ) : void
Reset ( ) : void

Method Details

Show() public static method

Show Error Message
This should only be used for system error message. Not for user behavior errors.
public static Show ( Exception e, System.Action callback = null ) : void
e System.Exception
callback System.Action
return void

Show() public static method

Show Error Message
This should only be used for system error message. Not for user behavior errors.
public static Show ( Response response, System.Action callback = null ) : void
response Response
callback System.Action
return void

Show() public static method

Show Error Message
This should only be used for system error message. Not for user behavior errors.
public static Show ( string message, System.Action callback = null ) : void
message string
callback System.Action
return void

Show() public static method

Show Error Message
This should only be used for system error message. Not for user behavior errors.
public static Show ( string title, string message, System.Action callback = null ) : void
title string
message string
callback System.Action
return void

Show() public static method

public static Show ( string title, string text, string stackTrace, string helpLink, ushort statusCode, System.Action callback = null ) : void
title string
text string
stackTrace string
helpLink string
statusCode ushort
callback System.Action
return void