CommandLineParserArguments Property

Gets the arguments supported by this CommandLineParser instance.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public ImmutableArray<CommandLineArgument> Arguments { get; }

Property Value

ImmutableArrayCommandLineArgument
A list of all the arguments.

Remarks

The Arguments property can be used to retrieve additional information about the arguments, including their name, description, and default value. Their current value can also be retrieved this way, in addition to using the arguments type directly.

To find an argument by name or alias, use the GetArgument(String) or GetShortArgument(Char) method.

See Also