Exemplo n.º 1
0
 public static To PopulateWith <To, From>(this To to, From from)
 {
     return(Proxy.PopulateWith(to, from));
 }
Exemplo n.º 2
0
 public static bool IsGenericType(this Type type)
 {
     return(Proxy.IsGenericType(type));
 }
Exemplo n.º 3
0
 public static Type FirstGenericTypeDefinition(this Type type)
 {
     return(Proxy.FirstGenericTypeDefinition(type));
 }
Exemplo n.º 4
0
 public static TAttribute FirstAttribute <TAttribute>(this PropertyInfo propertyInfo)
 {
     return(Proxy.FirstAttribute <TAttribute>(propertyInfo));
 }
Exemplo n.º 5
0
 public static TAttribute FirstAttribute <TAttribute>(this PropertyInfo propertyInfo, bool inherit)
 {
     return(Proxy.FirstAttribute <TAttribute>(propertyInfo, inherit));
 }
Exemplo n.º 6
0
 public static TAttribute FirstAttribute <TAttribute>(this Type type, bool inherit)
 {
     return(Proxy.FirstAttribute <TAttribute>(type, inherit));
 }
Exemplo n.º 7
0
 public static TAttribute FirstAttribute <TAttribute>(this Type type)
 {
     return(Proxy.FirstAttribute <TAttribute>(type));
 }
Exemplo n.º 8
0
 public static T TranslateTo <T>(this object from)
     where T : new()
 {
     return(Proxy.TranslateTo <T>(from));
 }
Exemplo n.º 9
0
 public static To PopulateFromPropertiesWithAttribute <To, From, TAttr>(this To to, From from)
 {
     return(Proxy.PopulateFromPropertiesWithAttribute <To, From, TAttr>(to, from));
 }
Exemplo n.º 10
0
 public static To PopulateWithNonDefaultValues <To, From>(this To to, From from)
 {
     return(Proxy.PopulateWithNonDefaultValues(to, from));
 }