OnLoadGetter() protected method

protected OnLoadGetter ( ) : PropertyGetter
return PropertyGetter
Ejemplo n.º 1
0
 public virtual PropertyGetter LoadGetter(PropertySpec propertySpec)
 {
     if (propertySpec == null)
     {
         throw new ArgumentNullException(nameof(propertySpec));
     }
     return(propertySpec.OnLoadGetter());
 }
Ejemplo n.º 2
0
 public virtual PropertyGetter LoadGetter(PropertySpec propertySpec)
 {
     if (propertySpec == null)
         throw new ArgumentNullException(nameof(propertySpec));
     return propertySpec.OnLoadGetter();
 }
Ejemplo n.º 3
0
 public Func<object, object> LoadGetter(PropertySpec propertySpec)
 {
     if (propertySpec == null) throw new ArgumentNullException("propertySpec");
     return propertySpec.OnLoadGetter();
 }