Click or drag to resize

CommandLineArgumentErrorCategory Enumeration

Specifies the kind of error that occurred while parsing arguments.

Namespace:  Ookii.CommandLine
Assembly:  Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntax
public enum CommandLineArgumentErrorCategory
Members
  Member nameValueDescription
Unspecified0 The category was not specified.
ArgumentValueConversion1 The argument value supplied could not be converted to the type of the argument.
UnknownArgument2 The argument name supplied does not name a known argument.
MissingNamedArgumentValue3 An argument name was supplied, but without an accompanying value.
DuplicateArgument4 An argument was supplied more than once.
TooManyArguments5 Too many positional arguments were supplied.
MissingRequiredArgument6 Not all required arguments were supplied.
InvalidDictionaryValue7 Invalid value for a dictionary argument; typically the result of a duplicate key.
CreateArgumentsTypeError8 An error occurred creating an instance of the arguments type (e.g. the constructor threw an exception).
ApplyValueError9 An error occurred applying the value of the argument (e.g. the property set accessor threw an exception).
See Also