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: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public enum ParsingMode

Remarks

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

Members

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

See Also