Catel.Services.MessageService.ShowErrorAsync C# (CSharp) Method

ShowErrorAsync() public method

Shows an error message to the user and allows a callback operation when the message is completed.
The is null.
public ShowErrorAsync ( Exception exception ) : Task
exception System.Exception The exception.
return Task
        public virtual Task<MessageResult> ShowErrorAsync(Exception exception)
        {
            Argument.IsNotNull("exception", exception);

            return ShowError(exception.Message, string.Empty);
        }

Same methods

MessageService::ShowErrorAsync ( string message, string caption = "" ) : Task