MongoDB.Bson.MaterializedOnDemandBsonDocument.Remove C# (CSharp) Méthode

Remove() public méthode

Removes an element from this document (if duplicate element names are allowed then all elements with this name will be removed).
public Remove ( string name ) : void
name string The name of the element to remove.
Résultat void
        public override void Remove(string name)
        {
            EnsureIsMaterialized();
            base.Remove(name);
        }