MongoDB.Bson.RawBsonDocument.this C# (CSharp) 메소드

this() 공개 메소드

Gets or sets a value by position.
public this ( int index ) : BsonValue
index int The position.
리턴 BsonValue
        public override BsonValue this[int index]
        {
            get { return GetValue(index); }
            set { Set(index, value); }
        }

Same methods

RawBsonDocument::this ( string name ) : BsonValue
RawBsonDocument::this ( string name, BsonValue defaultValue ) : BsonValue