Table of Contents

Enum TigerCliPromptMode

Namespace
ItTiger.TigerCli.Enums
Assembly
ItTiger.TigerCli.dll
Controls which missing values TigerCli may prompt for when the effective interaction mode allows semi-interactive prompting.
public enum TigerCliPromptMode

Fields

No = 0
Do not prompt for values unless a property explicitly opts in through promptability metadata.
RequiredOnly = 1
Prompt for missing required values, subject to each property opting out or changing prompt order.
Yes = 2
Prompt for missing promptable values, including optional values, unless a property opts out.

Remarks

This mode is resolved from app, group, and command configuration, then combined with each argument/option's promptability metadata. It has no effect when interaction is non-interactive. Prompted values are bound before required-value and framework validation run.