本文整理汇总了C#中IOutput.Error方法的典型用法代码示例。如果您正苦于以下问题:C# IOutput.Error方法的具体用法?C# IOutput.Error怎么用?C# IOutput.Error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IOutput
的用法示例。
在下文中一共展示了IOutput.Error方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExecuteSafely
// in case action takes a subject (queue)
protected static bool ExecuteSafely(string subject, IQueueTools tools, IOutput output, Func<string, IQueueTools, IOutput, bool> action)
{
try
{
return action.Invoke(subject, tools, output);
}
catch (Exception e)
{
output.Error(subject, e.Message);
return false;
}
}
示例2: Execute
public bool Execute(string subject, IQueueTools tools, IOutput log)
{
bool alreadyExists = tools.Exists(subject);
if (!alreadyExists)
{
log.Error(subject, "Doesn't exist.");
return false;
}
log.OK(subject, string.Format("{0} message(s).", tools.Count(subject)));
return true;
}
示例3: Execute
public bool Execute(string subject, IQueueTools tools, IOutput log)
{
try
{
int copied = tools.Transfer(subject, _opts.Destination, null, false, false);
log.Out(subject + " copied to " + _opts.Destination + " ("+ copied +" messages)");
return true;
}
catch (Exception ex)
{
log.Error(ex.Message);
return false;
}
}
示例4: WriteToStdErr
public void WriteToStdErr(IOutput output)
{
string msg = $"{Constants.SharpJs} compile finish. {this.Errors.Count()} error(s), {this.Warnings.Count()} warning(s)";
if (this.HasError)
{
output.Error(msg, true);
}
else
{
output.Success(msg, true);
}
foreach (var warn in this.Warnings)
{
output.Warning(warn.Message);
}
foreach (var err in this.Errors)
{
output.Error(err.Message);
}
}
示例5: Execute
public bool Execute(string subject, IQueueTools tools, IOutput log)
{
bool alreadyExists = tools.Exists(subject);
if (alreadyExists && !_opts.Force)
{
log.Error(subject, "Already exists. Issue -f to force creation.");
return false;
}
if (alreadyExists && _opts.Force)
{
tools.Delete(subject);
log.Warn(subject, "Deleted (force).");
}
tools.Create(subject, _opts.User, _opts.Permissions, _opts.Transactional,
_opts.Limit);
log.OK(subject, "Created.");
return true;
}