Interface IMessageManager
Interface for requesting showing messages to the user from inside of a view model.
Namespace: Benday.Presentation
Assembly: Benday.Presentation.dll
Syntax
public interface IMessageManager
Methods
| Edit this page View SourceShowMessage(Exception)
Show a message to the user for an exception.
Declaration
Task ShowMessage(Exception ex)
Parameters
Type | Name | Description |
---|---|---|
Exception | ex |
Returns
Type | Description |
---|---|
Task |
ShowMessage(string, string)
Show a message to the user.
Declaration
Task ShowMessage(string message, string title)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message text to show |
string | title | The title of the message box |
Returns
Type | Description |
---|---|
Task |