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

RemoveElement() public method

Removes an element from this document.
public RemoveElement ( BsonElement element ) : void
element BsonElement The element to remove.
return void
        public override void RemoveElement(BsonElement element)
        {
            throw new NotSupportedException("RawBsonDocument instances are immutable.");
        }