Ensure.IsBetween(T) Method (original) (raw)
EnsureIsBetweenT Method
Ensures that the value of a parameter is between a minimum and a maximum value.
Namespace: MongoDB.Driver.Core.Misc
Assembly: MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
public static T IsBetween( T value, T min, T max, string paramName ) where T : Object, IComparable
Public Shared Function IsBetween(Of T As {Object, IComparable(Of T)}) ( value As T, min As T, max As T, paramName As String ) As T
static member IsBetween : value : 'T * min : 'T * max : 'T * paramName : string -> 'T when 'T : Object and IComparable<'T>
Parameters
value
Type: T
The value of the parameter.
min
Type: T
The minimum value.
max
Type: T
The maximum value.
paramName
Type: SystemString
The name of the parameter.
Type Parameters
T
Type type of the value.
Return Value
Type: T
The value of the parameter.
See Also