public static PropertyInfo GetStorePropertyInfo(Type rType, string rStorePropertyName)
        {
            Debugger.ValidValueE(rType, "TypeSearchBase.GetStorePropertyInfo => rType is empty!");
            Debugger.ValidValueE(rStorePropertyName, "TypeSearchBase.GetStorePropertyInfo => rStorePropertyName is empty!");

            return(rType.SearchBaseTo <TypeSearchBase>().GetProperty(rStorePropertyName,
                                                                     BindingFlags.Static | BindingFlags.Public));
        }
Exemple #2
0
 public static PropertyInfo GetStorePropertyInfo(Type rType, string rStorePropertyName)
 {
     return(rType.SearchBaseTo <TypeSearchBase>().GetProperty(rStorePropertyName,
                                                              BindingFlags.Static | BindingFlags.Public));
 }