Adf.Base.Tasks.TaskExecutionExtensions.ExecuteAndOk C# (CSharp) Method

ExecuteAndOk() public static method

public static ExecuteAndOk ( this task ) : void
task this
return void
        public static void ExecuteAndOk(this ITask task, params Action[] actions)
        {
            if (task.Execute(actions)) task.OK();
        }