IsLessThan Method (ConditionValidator(Int64), Int64, String)

CuttingEdge.Conditions

Checks whether the given value is less than the specified maxValue. An exception is thrown otherwise.

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

Syntax

Visual Basic (Declaration)
Public Shared Function IsLessThan ( _
	validator As ConditionValidator(Of Long), _
	maxValue As Long, _
	conditionDescription As String _
) As ConditionValidator(Of Long)
C#
public static ConditionValidator<long> IsLessThan(
	ConditionValidator<long> validator,
	long maxValue,
	string conditionDescription
)
Visual C++
public:
static ConditionValidator<long long>^ IsLessThan(
	ConditionValidator<long long>^ validator, 
	long long maxValue, 
	String^ conditionDescription
)
JavaScript
CuttingEdge.Conditions.ValidatorExtensions.isLessThan = function(validator, maxValue, conditionDescription);

Parameters

validator
Type: CuttingEdge.Conditions..::.ConditionValidator<(Of <(Int64>)>)
The ConditionValidator<(Of <(T>)>) that holds the value that has to be checked.
maxValue
Type: System..::.Int64
The lowest invalid value.
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

ExceptionCondition
System..::.ArgumentOutOfRangeExceptionThrown when the Value of the specified validator is greater or equal to maxValue, while the specified validator is created using the Requires extension method.
CuttingEdge.Conditions..::.PostconditionExceptionThrown when the Value of the specified validator is greater or equal to maxValue, while the specified validator is created using the Ensures extension method.

See Also