Ensures that the value of a parameter is null or greater than or equal to zero.
Namespace:
MongoDB.Driver.Core.Misc
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntaxpublic static Nullable<long> IsNullOrGreaterThanOrEqualToZero(
Nullable<long> value,
string paramName
)
Public Shared Function IsNullOrGreaterThanOrEqualToZero (
value As Nullable(Of Long),
paramName As String
) As Nullable(Of Long)
static member IsNullOrGreaterThanOrEqualToZero :
value : Nullable<int64> *
paramName : string -> Nullable<int64>
Parameters
- value
- Type: SystemNullableInt64
The value of the parameter. - paramName
- Type: SystemString
The name of the parameter.
Return Value
Type:
NullableInt64The value of the parameter.
See Also