Class MessageBoxMessageManager
Message manager that shows a message box to the user.
This implementation uses the Shell.Current.CurrentPage.DisplayAlert() method.
Inheritance
MessageBoxMessageManager
Assembly: Benday.Presentation.dll
Syntax
public class MessageBoxMessageManager : IMessageManager
Methods
|
Edit this page
View Source
ShowMessage(Exception)
Show a message to the user for an exception.
Declaration
public Task ShowMessage(Exception ex)
Parameters
Returns
|
Edit this page
View Source
ShowMessage(string, string)
Show a message to the user.
Declaration
public Task ShowMessage(string message, string title = "Info")
Parameters
Returns
Implements