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

TryGetValue() public method

Tries to get the value of an element of this document.
public TryGetValue ( string name, BsonValue &value ) : bool
name string The name of the element.
value BsonValue The value of the element.
return bool
        public override bool TryGetValue(string name, out BsonValue value)
        {
            EnsureIsMaterialized();
            return base.TryGetValue(name, out value);
        }