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 CommandLineParser.Parse<T>(ParseOptions) method, will return a null value. The ParseResult.Status property will be ParseStatus.Canceled. |
Success | 2 | The argument cancels parsing, returning success using the results so far. Remaining arguments are not parsed, and will be available in the ParseResult.RemainingArguments property. The ParseResult.Status property will be ParseStatus.Success. If not all required arguments have values at this point, an exception will be thrown. |