MongoDB.Bson.MaterializedOnDemandBsonDocument.GetValue C# (CSharp) Method

GetValue() public method

Gets the value of an element.
public GetValue ( int index ) : BsonValue
index int The zero based index of the element.
return BsonValue
        public override BsonValue GetValue(int index)
        {
            EnsureIsMaterialized();
            return base.GetValue(index);
        }

Same methods

MaterializedOnDemandBsonDocument::GetValue ( string name ) : BsonValue
MaterializedOnDemandBsonDocument::GetValue ( string name, BsonValue defaultValue ) : BsonValue