EnsureIsNullOrBetweenT Method |
Ensures that the value of a parameter is null or is between a minimum and a maximum value.
Namespace:
MongoDB.Driver.Core.Misc
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public static T? IsNullOrBetween<T>(
T? value,
T min,
T max,
string paramName
)
where T : struct, new(), IComparable<T>
Public Shared Function IsNullOrBetween(Of T As {Structure, New, IComparable(Of T)}) (
value As T?,
min As T,
max As T,
paramName As String
) As T?
static member IsNullOrBetween :
value : Nullable<'T> *
min : 'T *
max : 'T *
paramName : string -> Nullable<'T> when 'T : struct, new() and IComparable<'T>
Parameters
- value
- Type: SystemNullableT
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:
NullableTThe value of the parameter.
See Also