示例#1
0
 void OnHasErrors(string message)
 {
     Error = message;
     HasErrors?.Invoke(this, message);
 }
示例#2
0
 public PlanExecutionEvents OnHasErrors(bool hasErrors, string statusText = "")
 {
     HasErrors?.Invoke(this, new PlanHasErrorsUpdatedEventArgs(backupPlan, hasErrors, statusText));
     return(this);
 }