public new Type GetPropertyValueType(PublishedPropertyType propertyType)
        {
            var pickerSettings = GetSettings(propertyType);

            return(BaseValueConverter.GetPropertyValueType(propertyType, pickerSettings));
        }
        public override object ConvertSourceToObject(PublishedPropertyType propertyType, object source, bool preview)
        {
            var value = base.ConvertSourceToObject(propertyType, source, preview);

            return(BaseValueConverter.ConvertSourceToObject(propertyType, value));
        }
 public new PropertyCacheLevel GetPropertyCacheLevel(PublishedPropertyType propertyType, PropertyCacheValue cacheValue)
 {
     return(BaseValueConverter.GetPropertyCacheLevel(propertyType, cacheValue));
 }