OnLoadProperties() защищенный абстрактный Метод

protected abstract OnLoadProperties ( ) : IEnumerable
Результат IEnumerable
Пример #1
0
 public virtual IEnumerable <PropertySpec> LoadProperties(TypeSpec typeSpec)
 {
     if (typeSpec == null)
     {
         throw new ArgumentNullException(nameof(typeSpec));
     }
     return(typeSpec.OnLoadProperties());
 }
Пример #2
0
 public virtual IEnumerable<PropertySpec> LoadProperties(TypeSpec typeSpec)
 {
     if (typeSpec == null)
         throw new ArgumentNullException(nameof(typeSpec));
     return typeSpec.OnLoadProperties();
 }