Ejemplo n.º 1
0
 public SitecoreSystemPropertyAttribute(SitecoreSystemPropertyType type)
 {
     FieldType = type;
 }
        internal static PropertyInfo GetTemplateSystemProperty <T>(SitecoreSystemPropertyType type)
        {
            var prop = typeof(T).GetProperties().FirstOrDefault(s => s.GetCustomAttributes <SitecoreSystemPropertyAttribute>().Any(a => a.FieldType == type));

            return(prop);
        }