OnLoadProperties() protected abstract method

protected abstract OnLoadProperties ( ) : IEnumerable
return IEnumerable
Ejemplo n.º 1
0
 public virtual IEnumerable <PropertySpec> LoadProperties(TypeSpec typeSpec)
 {
     if (typeSpec == null)
     {
         throw new ArgumentNullException(nameof(typeSpec));
     }
     return(typeSpec.OnLoadProperties());
 }
Ejemplo n.º 2
0
 public virtual IEnumerable<PropertySpec> LoadProperties(TypeSpec typeSpec)
 {
     if (typeSpec == null)
         throw new ArgumentNullException(nameof(typeSpec));
     return typeSpec.OnLoadProperties();
 }