ParseStatus Enumeration

Indicates the status of the last call to the CommandLineParserParse method or one of its overloads.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public enum ParseStatus

Members

None0 The CommandLineParserParse method has not been called yet.
Success1 The operation successfully parsed all arguments, or was canceled using CancelModeSuccess. Check the ParseResultArgumentName property to differentiate between the two.
Error2 An error occurred while parsing the arguments.
Canceled3 Parsing was canceled by one of the arguments using CancelModeAbort.

See Also