Ensures that the value of a parameter is not null.
Namespace:
MongoDB.Driver.Core.Misc
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public static T? HasValue<T>(
T? value,
string paramName
)
where T : struct, new()
Public Shared Function HasValue(Of T As {Structure, New}) (
value As T?,
paramName As String
) As T?
static member HasValue :
value : Nullable<'T> *
paramName : string -> Nullable<'T> when 'T : struct, new()
Parameters
- value
- Type: SystemNullableT
The value of the parameter. - 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