ParseOptions.Mode Property
Gets or sets a value that indicates the command line argument parsing rules to use.
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
public ParsingMode? Mode { get; set; }
Public Property Mode As ParsingMode?
Get
Set
Dim instance As ParseOptions
Dim value As ParsingMode?
value = instance.Mode
instance.Mode = value
public:
property Nullable<ParsingMode> Mode {
Nullable<ParsingMode> get ();
void set (Nullable<ParsingMode> value);
}
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.
If not null, this property overrides the value of the
Mode property.