IsEmpty Method (ConditionValidator(String))

CuttingEdge.Conditions

Checks whether the given value is an Empty()()() string. An exception is thrown otherwise.

Namespace:  CuttingEdge.Conditions
Assembly:  CuttingEdge.Conditions (in CuttingEdge.Conditions.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function IsEmpty ( _
	validator As ConditionValidator(Of String) _
) As ConditionValidator(Of String)
C#
public static ConditionValidator<string> IsEmpty(
	ConditionValidator<string> validator
)
Visual C++
public:
static ConditionValidator<String^>^ IsEmpty(
	ConditionValidator<String^>^ validator
)
JavaScript
CuttingEdge.Conditions.ValidatorExtensions.isEmpty = function(validator);

Parameters

validator
Type: CuttingEdge.Conditions..::.ConditionValidator<(Of <(String>)>)
The ConditionValidator<(Of <(T>)>) that holds the value that has to be checked.

Return Value

The specified validator instance.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionThrown when the Value of the specified validator is not empty, while the specified validator is created using the Requires extension method.
System..::.ArgumentNullExceptionThrown when the Value of the specified validator is a null reference, while the specified validator is created using the Requires extension method.
CuttingEdge.Conditions..::.PostconditionExceptionThrown when the Value of the specified validator is not empty, while the specified validator is created using the Ensures extension method.

See Also