本文整理汇总了C#中IOutput.Notify方法的典型用法代码示例。如果您正苦于以下问题:C# IOutput.Notify方法的具体用法?C# IOutput.Notify怎么用?C# IOutput.Notify使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IOutput
的用法示例。
在下文中一共展示了IOutput.Notify方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Handle
public override void Handle(IOutput output)
{
var message = $"Command not recognized: {_commandText} \nType \"help\" to get a list of available commands";
output.Notify(message);
}
示例2: Handle
public override void Handle(IOutput output)
{
output.Notify(
"Unable to authorize to MixPanel. Please check that you called set-credentials command with valid project secret prior to calling current command.");
}
示例3: Handle
public override void Handle(IOutput output)
{
output.Notify("Done!");
}
示例4: Handle
public override void Handle(IOutput output)
{
output.Notify($"Execution stopped with an exception <{_ex.GetType().FullName}>, Message: {_ex.Message}");
}