Method GetValue
GetValue(int)
Gets the value of an element.
public virtual BsonValue GetValue(int index)
Parameters
indexintThe zero based index of the element.
Returns
- BsonValue
The value of the element.
GetValue(string)
Gets the value of an element.
public virtual BsonValue GetValue(string name)
Parameters
namestringThe name of the element.
Returns
- BsonValue
The value of the element.
GetValue(string, BsonValue)
Gets the value of an element or a default value if the element is not found.
public virtual BsonValue GetValue(string name, BsonValue defaultValue)
Parameters
namestringThe name of the element.
defaultValueBsonValueThe default value returned if the element is not found.
Returns
- BsonValue
The value of the element or the default value if the element is not found.