MongoDB.Bson.RawBsonDocument.Set C# (CSharp) Метод

Set() публичный Метод

Sets the value of an element.
public Set ( int index, BsonValue value ) : BsonDocument
index int The zero based index of the element whose value is to be set.
value BsonValue The new value.
Результат BsonDocument
        public override BsonDocument Set(int index, BsonValue value)
        {
            throw new NotSupportedException("RawBsonDocument instances are immutable.");
        }

Same methods

RawBsonDocument::Set ( string name, BsonValue value ) : BsonDocument