MongoDB.Bson.RawBsonDocument.AddRange C# (CSharp) Method

AddRange() public method

Adds elements to the document from a dictionary of key/value pairs.
public AddRange ( object>.Dictionary dictionary ) : BsonDocument
dictionary object>.Dictionary The dictionary.
return BsonDocument
        public override BsonDocument AddRange(Dictionary<string, object> dictionary)
        {
            throw new NotSupportedException("RawBsonDocument instances are immutable.");
        }

Same methods

RawBsonDocument::AddRange ( IDictionary dictionary ) : BsonDocument
RawBsonDocument::AddRange ( IEnumerable elements ) : BsonDocument
RawBsonDocument::AddRange ( object>.IEnumerable dictionary ) : BsonDocument