Click or drag to resize

BsonDocumentItem Property (String, BsonValue)

Note: This API is now obsolete.

Gets the value of an element or a default value if the element is not found.

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
[ObsoleteAttribute("Use GetValue(string name, BsonValue defaultValue) instead.")]
public virtual BsonValue this[
	string name,
	BsonValue defaultValue
] { get; }

Parameters

name
Type: SystemString
The name of the element.
defaultValue
Type: MongoDB.BsonBsonValue
The default value to return if the element is not found.

Return Value

Type: BsonValue
Teh value of the element or a default value if the element is not found.
See Also