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: 3.1.1
C#
public ParseResult ParseResult { get; }

Property Value

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

Remarks

If the ParseWithErrorHandling 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 custom parsing, the value of the Status property will be None.

See Also