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.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
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