Beispiel #1
0
 protected override Filterer <PropertyInfo> GetPropertyInfoFilterer(Type type)
 {
     return(Filterer_PropertyInfo.IsGetPublic());
 }
Beispiel #2
0
 static public void AddPublicPropertyAttributeLinksForType(this RepresentationEngine item, Type type)
 {
     type.GetFilteredInstancePropertys(Filterer_PropertyInfo.IsSetAndGetPublic())
     .Convert(p => p.CreateVariable())
     .Process(v => item.AddLinkInfo(v.GetVariableName().StyleAsVariableName(), v));
 }