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.4.1
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