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. |
Success | 2 | 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. |