Method | Description | |
---|---|---|
ShowError ( this service, string message ) : void |
Shows the message as error.
|
|
ShowMessage ( this service, string message ) : void |
Shows the message.
|
|
ShowQuestion ( this service, string message ) : bool? |
Shows the specified question.
|
|
ShowWarning ( this service, string message ) : void |
Shows the message as warning.
|
|
ShowYesNoQuestion ( this service, string message ) : bool |
Shows the specified yes/no question.
|
public static ShowError ( this service, string message ) : void | ||
service | this | The message service. |
message | string | The message. |
return | void |
public static ShowMessage ( this service, string message ) : void | ||
service | this | The message service. |
message | string | The message. |
return | void |
public static ShowQuestion ( this service, string message ) : bool? | ||
service | this | The message service. |
message | string | The question. |
return | bool? |
public static ShowWarning ( this service, string message ) : void | ||
service | this | The message service. |
message | string | The message. |
return | void |
public static ShowYesNoQuestion ( this service, string message ) : bool | ||
service | this | The message service. |
message | string | The question. |
return | bool |