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.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntaxpublic 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