public StepExecutionEvents StatusText(string statusText) { StatusTextUpdated?.Invoke(this, new StepStatusTextUpdatedEventArgs(statusText)); return(this); }
/// <summary> /// Tell engine to fire StatusTextEvent with given arguments /// </summary> /// <param name="e"></param> public void TriggerStatusTextUpdated(StatusTextEventArgs e) { StatusTextUpdated?.Invoke(this, e); }