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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
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