Exemplo n.º 1
0
 public static bool Filter(this DynamicModelPropertyInfo info, Type componentBaseType, Type[] filteredPropertyBaseTypes, Type[] attributes)
 {
     return(info.IsBrowseable() && info.HasAttributes(attributes) && !ExcludedReservedNames.Contains(info.Name) &&
            FilterCore(info, componentBaseType, filteredPropertyBaseTypes));
 }