NanoByte.Common.Tasks.DialogTaskHandler.Output C# (CSharp) Method

Output() public method

public Output ( string title, string message ) : void
title string
message string
return void
        public override void Output(string title, string message)
        {
            #region Sanity checks
            if (title == null) throw new ArgumentNullException(nameof(title));
            if (message == null) throw new ArgumentNullException(nameof(message));
            #endregion

            ApplicationUtils.Invoke(() => Msg.Inform(_owner, title + Environment.NewLine + message, MsgSeverity.Info));
        }