CuttingEdge.Conditions reference library |
ValidatorExtensions..::.DoesNotHaveLength Method (ConditionValidator<(Of <(String>)>), Int32) |
ValidatorExtensions Class See Also Send Feedback |
Checks whether the given value is unequal in length to length.
An exception is thrown otherwise. A null reference is considered to have a length of 0.
Namespace:
CuttingEdge.Conditions
Assembly:
CuttingEdge.Conditions (in CuttingEdge.Conditions.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function DoesNotHaveLength ( _ validator As ConditionValidator(Of String), _ length As Integer _ ) As ConditionValidator(Of String) |
C# |
---|
public static ConditionValidator<string> DoesNotHaveLength( ConditionValidator<string> validator, int length ) |
Visual C++ |
---|
public: static ConditionValidator<String^>^ DoesNotHaveLength( ConditionValidator<String^>^ validator, int length ) |
JavaScript |
---|
CuttingEdge.Conditions.ValidatorExtensions.doesNotHaveLength = function(validator, length); |
Parameters
- validator
- Type: CuttingEdge.Conditions..::.ConditionValidator<(Of <(String>)>)
The ConditionValidator<(Of <(T>)>) that holds the value that has to be checked.
- length
- Type: System..::.Int32
The invalid length.
Return Value
The specified validator instance.Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | Thrown when the length of Value of the specified validator equals length, 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 and length un equals 0, while the specified validator is created using the Requires extension method. |
CuttingEdge.Conditions..::.PostconditionException | Thrown when the length of Value of the specified validator equals length, while the specified validator is created using the Ensures extension method. |