Click or drag to resize

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.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public T WithDefault(
	T value
)

Parameters

value
Type: T
The default value.

Return Value

Type: T
Either the value of this optional parameter if it has a value, otherwise a default value.
See Also