Method GetValue
GetValue(int)
Gets the value of an element.
public override BsonValue GetValue(int index)Parameters
- indexint
- The zero based index of the element. 
Returns
- BsonValue
- The value of the element. 
GetValue(string)
Gets the value of an element.
public override BsonValue GetValue(string name)Parameters
- namestring
- The 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 override BsonValue GetValue(string name, BsonValue defaultValue)Parameters
- namestring
- The name of the element. 
- defaultValueBsonValue
- The 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.