CliOptionAttributeAllowMultipleArgumentsPerToken Property

Gets or sets a value that indicates whether multiple argument tokens are allowed for each option identifier token.

If set to , the following command line is valid for passing multiple arguments:

console
> myapp --opt 1 2 3
The following is equivalent and is always valid:
console
> myapp --opt 1 --opt 2 --opt 3

Definition

Namespace: DotMake.CommandLine
Assembly: DotMake.CommandLine (in DotMake.CommandLine.dll) Version: 1.8.7
C#
public bool AllowMultipleArgumentsPerToken { get; set; }

Property Value

Boolean

See Also