CommandLineArgument.IsSwitch Property

Gets a value indicating whether this argument is a switch argument.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.1.0+9df03b6173b5fc9d44dc39638758964dd7a0f4c7
C#
public bool IsSwitch { get; }

Property Value

Boolean
true if the argument is a switch argument; otherwise, false.

Remarks

A switch argument is an argument that doesn't need a value; instead, its value is true or false depending on whether the argument is present on the command line.

A argument is a switch argument when it is not positional, and its ElementType is a Boolean.

See Also