OptionalTWithDefault Method |
Returns either the value of this optional parameter if it has a value, otherwise a default value.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax public T WithDefault(
T value
)
Public Function WithDefault (
value As T
) As T
member WithDefault :
value : 'T -> 'T
Parameters
- value
- Type: T
The default value.
Return Value
Type:
TEither the value of this optional parameter if it has a value, otherwise a default value.
See Also