/// <summary>
 ///     Remove a specific key on object
 /// </summary>
 public bool RemoveKey(string key)
 {
     return(RawValue.Remove(key));
 }
Exemple #2
0
 public bool Remove(BsonValue item)
 {
     return(RawValue.Remove(item));
 }
Exemple #3
0
 public bool Remove(KeyValuePair <string, BsonValue> item)
 {
     return(RawValue.Remove(item.Key));
 }