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