Method | Description | |
---|---|---|
ActionPrompt ( string prompt, string title, string message = null, string actionCaption = null, string cancelCaption = null, bool isWarning = false ) : bool |
Show a message dialog with a Yes and No button to the user.
|
|
ErrorPrompt ( string message, string title ) : void |
Shows an error message dialog to the user, with an Ok button.
|
|
ExceptionPrompt ( |
Shows an error message for the given AggregateException.
|
|
ExceptionPrompt ( |
Shows an error message for the given exception.
|
|
OkPrompt ( string message, string title ) : void |
Shows a message dialog to the user with an Ok button.
|
public static ActionPrompt ( string prompt, string title, string message = null, string actionCaption = null, string cancelCaption = null, bool isWarning = false ) : bool | ||
prompt | string | The message for the dialog. |
title | string | The title for the dialog. |
message | string | The message to show under the prompt. |
actionCaption | string | The caption for the action button, it will be "Yes" by default. |
cancelCaption | string | The caption for the cancel button, it will be "Cancel" by default. |
isWarning | bool | |
return | bool |
public static ErrorPrompt ( string message, string title ) : void | ||
message | string | The message for the dialog. |
title | string | The title for the dialog. |
return | void |
public static ExceptionPrompt ( |
||
ex | The exception to show. | |
return | void |
public static ExceptionPrompt ( |
||
ex | The exception to show. | |
return | void |
public static OkPrompt ( string message, string title ) : void | ||
message | string | The message for the dialog. |
title | string | The title for the dialog. |
return | void |