CommandManagerParseResult Property

Gets the result of parsing the arguments for the last call to CreateCommand.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public ParseResult ParseResult { get; }

Property Value

ParseResult
The value of the CommandLineParserParseResult property after the call to the CommandLineParserParseWithErrorHandling method made while creating the command.

Remarks

If the CommandLineParserParseWithErrorHandling method was not invoked, for example because the CreateCommand method has not been called, no command name was specified, an unknown command name was specified, or the command used the ICommandWithCustomParsing interface , the value of the ParseResultStatus property will be ParseStatusNone.

See Also