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