public enum CancelMode
Public Enumeration CancelMode
Dim instance As CancelMode
public enum class CancelMode
None | 0 | The argument does not cancel parsing. |
Abort | 1 | The argument cancels parsing, discarding the results so far. Parsing, using for example the CommandLineParserParseT(ParseOptions) method, will return a value. The ParseResultStatus property will be ParseStatusCanceled. The ParseResultHelpRequested property will be . |
AbortWithHelp | 2 | The same as Abort, but the ParseResultHelpRequested property will be . |
Success | 3 | The argument cancels parsing, returning success using the results so far. Remaining arguments are not parsed, and will be available in the ParseResultRemainingArguments property. The ParseResultStatus property will be ParseStatusSuccess. If not all required arguments have values at this point, an exception will be thrown. |