MongoDB.Bson.MaterializedOnDemandBsonDocument.TryGetElement C# (CSharp) 메소드

TryGetElement() 공개 메소드

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.
리턴 bool
        public override bool TryGetElement(string name, out BsonElement value)
        {
            EnsureIsMaterialized();
            return base.TryGetElement(name, out value);
        }