CuttingEdge.Conditions reference library |
ValidatorExtensions..::.IsNotNullOrWhiteSpace Method (ConditionValidator<(Of <(String>)>), String) |
ValidatorExtensions Class See Also Send Feedback |
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), _ conditionDescription As String _ ) As ConditionValidator(Of String) |
C# |
---|
public static ConditionValidator<string> IsNotNullOrWhiteSpace( ConditionValidator<string> validator, string conditionDescription ) |
Visual C++ |
---|
public: static ConditionValidator<String^>^ IsNotNullOrWhiteSpace( ConditionValidator<String^>^ validator, String^ conditionDescription ) |
JavaScript |
---|
CuttingEdge.Conditions.ValidatorExtensions.isNotNullOrWhiteSpace = function(validator, conditionDescription); |
Parameters
- validator
- Type: CuttingEdge.Conditions..::.ConditionValidator<(Of <(String>)>)
The ConditionValidator<(Of <(T>)>) that holds the value that has to be checked.
- conditionDescription
- Type: System..::.String
The description of the condition that should hold. The string may hold the placeholder '{0}' for the ArgumentName.
Return Value
The specified validator instance.Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | Thrown 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..::.ArgumentNullException | Thrown when the Value of the specified validator is a null reference, while the specified validator is created using the Requires extension method. |
CuttingEdge.Conditions..::.PostconditionException | Thrown 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. |