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.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
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