ParsingMode Enumeration

Indicates what argument parsing rules should be used to interpret the command line.

Definition

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

Remarks

To set the parsing mode for a CommandLineParser, use the Mode property or the Mode property.

Members

Default0 Use the normal Ookii.CommandLine parsing rules.
LongShort1 Allow arguments to have both long and short names, using the LongArgumentNamePrefix to specify a long name, and the regular ArgumentNamePrefixes to specify a short name.

See Also