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.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
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