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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
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