ParseOptions.Mode Property

Gets or sets a value that indicates the command line argument parsing rules to use.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public ParsingMode? Mode { get; set; }

Property Value

Nullable<ParsingMode>
One of the values of the ParsingMode enumeration, or null to use the value from the ParseOptionsAttribute attribute, or if that attribute is not present, Default. The default value is null.

Remarks

If not null, this property overrides the value of the Mode property.

See Also