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

TryGetElement() public method

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