IsNotNullOrWhiteSpace Method (ConditionValidator(String))

CuttingEdge.Conditions

Checks whether the given value is not null (Nothing in Visual Basic), not empty, and does not consists only of white-space characters.

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

Syntax

Visual Basic (Declaration)
Public Shared Function IsNotNullOrWhiteSpace ( _
	validator As ConditionValidator(Of String) _
) As ConditionValidator(Of String)
C#
public static ConditionValidator<string> IsNotNullOrWhiteSpace(
	ConditionValidator<string> validator
)
Visual C++
public:
static ConditionValidator<String^>^ IsNotNullOrWhiteSpace(
	ConditionValidator<String^>^ validator
)
JavaScript
CuttingEdge.Conditions.ValidatorExtensions.isNotNullOrWhiteSpace = 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 empty or consists only of white-space characters, 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 length of the Value of the specified validator is null, empty or or consists only of white-space characters, while the specified validator is created using the Ensures extension method.

See Also