Enum UnrecognizedArgumentHandling
Defines behaviors for for how unrecognized arguments should be handled.
Namespace: McMaster.Extensions.CommandLineUtils
Assembly: McMaster.Extensions.CommandLineUtils.dll
Syntax
public enum UnrecognizedArgumentHandling
Fields
Name | Description |
---|---|
StopParsingAndCollect | When an unrecognized argument is encountered, stop parsing arguments and put all remaining arguments, including the first unrecognized argument, in RemainingArguments. |
Throw | When an unrecognized argument is encountered, throw CommandParsingException. |