Table of Contents

Class WorkflowResult

Namespace
Ando.Workflow
Assembly
ando.dll

Result of executing the entire workflow (all steps).

public class WorkflowResult
Inheritance
WorkflowResult
Inherited Members

Properties

Duration

Total time taken for all steps.

public TimeSpan Duration { get; init; }

Property Value

TimeSpan

StepResults

Individual results for each step that was executed.

public List<StepResult> StepResults { get; init; }

Property Value

List<StepResult>

StepsFailed

Number of steps that failed.

public int StepsFailed { get; }

Property Value

int

StepsRun

Number of steps that were executed (may be less than registered if fail-fast triggered).

public int StepsRun { get; }

Property Value

int

Success

Whether all steps completed successfully.

public bool Success { get; init; }

Property Value

bool

WasCancelled

Whether the workflow was cancelled by the user (Ctrl+C).

public bool WasCancelled { get; init; }

Property Value

bool

WorkflowName

Workflow name (currently always "build").

public string WorkflowName { get; init; }

Property Value

string