CommandLineArgumentAllowMultiValueWhiteSpaceSeparator Property

Gets a value that indicates whether or not a multi-value argument can consume multiple following argument values.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public bool AllowMultiValueWhiteSpaceSeparator { get; }

Property Value

Boolean
if a multi-value argument can consume multiple following values; otherwise, .

Remarks

A multi-value argument that allows white-space separators is able to consume multiple values from the command line that follow it. All values that follow the name, up until the next argument name, are considered values for this argument.

If the IsMultiValue property is , this property is always .

See Also