MongoDB.Bson.MaterializedOnDemandBsonDocument.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)
        {
            EnsureIsMaterialized();
            return base.AddRange(dictionary);
        }

Same methods

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