Exemplo n.º 1
0
 public static IPropertyPathValueAccessor GetValueAccessor <T, TProperty>(this object that, Expression <Func <T, TProperty> > expression)
 => A.GetValueAccessor(that, PropertyPath.Of <T>().Then(expression));
Exemplo n.º 2
0
 public static IPropertyValueAccessor GetValueAccessor <T>(this T that, IPropertyValueGetter getter, IPropertyValueSetter setter)
 => A.GetValueAccessor(that, getter, setter);
Exemplo n.º 3
0
 public static IPropertyPathValueAccessor GetValueAccessor <T, TVal>(this T that, Func <PropertyPath <T>, PropertyPath <TVal> > pathFunc)
 => A.GetValueAccessor(that, pathFunc);
Exemplo n.º 4
0
 public static IPropertyValueAccessor GetValueAccessor <T>(this T that, Func <Type, object, string, BindingFlags, object> getter, Action <Type, object, string, BindingFlags, object> setter)
 => A.GetValueAccessor(that, getter, setter);
Exemplo n.º 5
0
 public static IPropertyValueAccessor GetValueAccessor <T>(this T that)
 => A.GetValueAccessor(that);
Exemplo n.º 6
0
 public static IPropertyValueAccessor GetValueAccessor(this object that, Type type, IPropertyValueGetter getter, IPropertyValueSetter setter)
 => A.GetValueAccessor(that, type, getter, setter);
Exemplo n.º 7
0
 public static IPropertyValueAccessor GetValueAccessor(this object that, Type type, Action <Type, object, string, BindingFlags, object> setter)
 => A.GetValueAccessor(that, type, setter);
Exemplo n.º 8
0
 public static IPropertyValueAccessor GetValueAccessor(this object that, Type type)
 => A.GetValueAccessor(that, type);