Table of Contents

Enum FlowVerdict

Namespace
SharpConsoleUI.Flows
Assembly
SharpConsoleUI.dll

Verdict returned by a flow button or step outcome, controlling navigation.

public enum FlowVerdict
Extension Methods

Fields

Abort = 9

Dialog answer: the user chose to abort the operation (Abort button).

Back = 1

Return to the previous step.

Cancel = 2

Abort the flow; result is discarded.

Finish = 3

Complete the flow successfully (final step).

Ignore = 10

Dialog answer: the user chose to ignore the condition and continue (Ignore button).

Next = 0

Advance to the next step.

No = 7

Dialog answer: the user answered negatively (No button).

None = 11

Dismiss sentinel: no answer was chosen (e.g. the dialog was dismissed via Esc).

Ok = 5

Dialog answer: the user accepted (OK button).

Retry = 8

Dialog answer: the user chose to retry the operation (Retry button).

Stay = 4

Keep the current step open (e.g. after failed validation).

Yes = 6

Dialog answer: the user answered affirmatively (Yes button).