OnLoadRequiredProperties() protected abstract method

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