bool IDictionaryPropertySetter.SetPropertyValue(IDictionaryAdapter dictionaryAdapter,
                                                 string key, ref object value, PropertyDescriptor property)
 {
     if (ShouldRemove(value))
     {
         dictionaryAdapter.ClearProperty(property, key);
         return(false);
     }
     return(true);
 }