Свойство | Type | Description | |
---|---|---|---|
ConvertExceptionToMessage | string | ||
CreateNew | void | ||
InitializeComponent | void | ||
OKButton_Click | void |
Méthode | Description | |
---|---|---|
CreateNew ( |
Creates a new Error Window given an exception. Current stack trace will be displayed if app is running under debug or on the local machine The exception is converted onto a message using ConvertExceptionToMessage
|
|
CreateNew ( |
Creates a new Error Window given an exception. The exception is converted onto a message using ConvertExceptionToMessage
|
|
CreateNew ( string message ) : void |
Creates a new Error Window given an error message. Current stack trace will be displayed if app is running under debug or on the local machine.
|
|
CreateNew ( string message, StackTracePolicy policy ) : void |
Creates a new Error Window given an error message.
|
Méthode | Description | |
---|---|---|
ErrorWindow ( string message, string errorDetails ) : System |
Creates a new ErrorWindow instance.
|
Méthode | Description | |
---|---|---|
ConvertExceptionToMessage ( |
Creates a user friendly message given an Exception. Currently this simply takes the Exception.Message value, optionally but you might want to change this to treat some specific Exception classes differently
|
|
CreateNew ( string message, string stackTrace, StackTracePolicy policy ) : void |
All other factory methods will result in a call to this one
|
|
InitializeComponent ( ) : void | ||
OKButton_Click ( object sender, |
public static CreateNew ( |
||
exception | The exception to display. | |
Résultat | void |
public static CreateNew ( |
||
exception | The exception to display. | |
policy | StackTracePolicy | When to display the stack trace, see |
Résultat | void |
public static CreateNew ( string message ) : void | ||
message | string | The message to display. |
Résultat | void |
public static CreateNew ( string message, StackTracePolicy policy ) : void | ||
message | string | The message to display. |
policy | StackTracePolicy | When to display the stack trace, see |
Résultat | void |
protected ErrorWindow ( string message, string errorDetails ) : System | ||
message | string | The error message to display. |
errorDetails | string | Extra information about the error. |
Résultat | System |