Interface IMessageService
Contract for messaging activities
Namespace: Onbox.Abstractions.V8
Assembly: Onbox.Abstractions.dll
Syntax
public interface IMessageService
Methods
| Improve this Doc View SourceError(String)
Shows an error message
Declaration
void Error(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message |
Question(String)
Shows a question message
Declaration
bool Question(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message |
Returns
Type | Description |
---|---|
System.Boolean |
SetTitle(String)
Sets the title of the messages
Declaration
void SetTitle(string newTitle)
Parameters
Type | Name | Description |
---|---|---|
System.String | newTitle |
Show(String)
Shows a message
Declaration
void Show(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message |
Warning(String)
Shows a warning message
Declaration
void Warning(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message |