OptionalTWithDefault Method |
Returns either the value of this optional parameter if it has a value, otherwise a default value.
Namespace: MongoDB.DriverAssembly: MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.3.0
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