本文整理汇总了C#中System.Reflection.PropertyInfo.AttributeExists方法的典型用法代码示例。如果您正苦于以下问题:C# PropertyInfo.AttributeExists方法的具体用法?C# PropertyInfo.AttributeExists怎么用?C# PropertyInfo.AttributeExists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Reflection.PropertyInfo
的用法示例。
在下文中一共展示了PropertyInfo.AttributeExists方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PropertyIsRequiredConvention
public override bool PropertyIsRequiredConvention(PropertyInfo propertyInfo)
{
if (propertyInfo.AttributeExists<ShowAsRequiredAttribute>())
return true;
if (propertyInfo.AttributeExists<RequiredAttribute>())
return true;
return base.PropertyIsRequiredConvention(propertyInfo);
}
示例2: LabelForPropertyConvention
public override string LabelForPropertyConvention(PropertyInfo propertyInfo)
{
if (propertyInfo.AttributeExists<LabelAttribute>())
return propertyInfo.GetAttribute<LabelAttribute>().Label;
return base.LabelForPropertyConvention(propertyInfo);
}
示例3: CanHandle
public override bool CanHandle(PropertyInfo propertyInfo)
{
if (propertyInfo.AttributeExists<DataTypeAttribute>())
{
return propertyInfo.GetAttribute<DataTypeAttribute>().DataType == DataType.EmailAddress;
}
return false;
}
示例4: CanHandle
public override bool CanHandle(PropertyInfo propertyInfo)
{
return propertyInfo.AttributeExists<MultilineAttribute>();
}