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 = 9Dialog answer: the user chose to abort the operation (Abort button).
Back = 1Return to the previous step.
Cancel = 2Abort the flow; result is discarded.
Finish = 3Complete the flow successfully (final step).
Ignore = 10Dialog answer: the user chose to ignore the condition and continue (Ignore button).
Next = 0Advance to the next step.
No = 7Dialog answer: the user answered negatively (No button).
None = 11Dismiss sentinel: no answer was chosen (e.g. the dialog was dismissed via Esc).
Ok = 5Dialog answer: the user accepted (OK button).
Retry = 8Dialog answer: the user chose to retry the operation (Retry button).
Stay = 4Keep the current step open (e.g. after failed validation).
Yes = 6Dialog answer: the user answered affirmatively (Yes button).