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

protected abstract OnWrapProperty ( PropertyInfo property ) : PropertySpec
property System.Reflection.PropertyInfo
Результат PropertySpec
Пример #1
0
 public virtual PropertySpec WrapProperty(TypeSpec typeSpec, PropertyInfo propertyInfo)
 {
     if (typeSpec == null)
     {
         throw new ArgumentNullException(nameof(typeSpec));
     }
     if (propertyInfo == null)
     {
         throw new ArgumentNullException(nameof(propertyInfo));
     }
     return(typeSpec.OnWrapProperty(propertyInfo));
 }
Пример #2
0
 public virtual PropertySpec WrapProperty(TypeSpec typeSpec, PropertyInfo propertyInfo)
 {
     if (typeSpec == null)
         throw new ArgumentNullException(nameof(typeSpec));
     if (propertyInfo == null)
         throw new ArgumentNullException(nameof(propertyInfo));
     return typeSpec.OnWrapProperty(propertyInfo);
 }