ValidateEnumValueAttributeIsValid Method

Determines if the argument's value is defined.

Definition

Namespace: Ookii.CommandLine.Validation
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public override bool IsValid(
	CommandLineArgument argument,
	Object? value
)

Parameters

argument  CommandLineArgument
The argument being validated.
value  Object
The argument value. If not , this must be an instance of ArgumentType.

Return Value

Boolean
if the value is valid; otherwise, .

Remarks

For regular arguments, the value parameter will be identical to the Value property. For multi-value or dictionary arguments, the value parameter will equal the last value added to the collection or dictionary.

If the Mode property is AfterParsing, value will always be . Use the Value property instead.

If you need to check the type of the argument, use the ElementType property unless you want to get the collection type for a multi-value or dictionary argument.

Exceptions

NotSupportedExceptionargument is not an argument with an enumeration type.

See Also