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.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
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