ValidationMode Enumeration

Specifies when a derived class of the ArgumentValidationAttribute class will run validation.

Definition

Namespace: Ookii.CommandLine.Validation
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public enum ValidationMode

Members

AfterConversion0 Validation will occur after the value is converted. The value passed to the IsValid(CommandLineArgument, Object) method is an instance of the argument's type.
BeforeConversion1 Validation will occur before the value is converted. The value passed to the IsValid(CommandLineArgument, Object) method is the raw string provided by the user, and Value is not yet set.
AfterParsing2 Validation will occur after all arguments have been parsed. Validators will only be called on arguments with values, and the value passed to IsValid(CommandLineArgument, Object) is always .

See Also