ParseOptionsAttributeDuplicateArguments Property

Gets or sets a value indicating whether duplicate arguments are allowed.

Definition

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

Property Value

ErrorMode
One of the values of the ErrorMode enumeration. The default value is Error.

Remarks

If set to Error, supplying a non-multi-value argument more than once will cause an exception. If set to Allow, the last value supplied will be used.

If set to Warning, the ParseWithErrorHandling method, the static ParseT(ParseOptions) method and the CommandManager class will print a warning to the Error stream when a duplicate argument is found. If you are not using these methods, Warning is identical to Allow and no warning is displayed.

This value can be overridden by the DuplicateArguments property.

See Also