ValidateNotEmptyAttribute.IsValid Method

Determines if the argument is not an empty string.

Definition

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

Parameters

argument  CommandLineArgument
The argument being validated.
value  Object
The raw string argument value provided by the user on the command line.

Return Value

Boolean
true if the value is valid; otherwise, false.

See Also