PropertyBuilder.IsDefined(Type, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示是否在此属性上定义一个或多个 attributeType
的实例。
public:
override bool IsDefined(Type ^ attributeType, bool inherit);
public override bool IsDefined (Type attributeType, bool inherit);
override this.IsDefined : Type * bool -> bool
Public Overrides Function IsDefined (attributeType As Type, inherit As Boolean) As Boolean
参数
- attributeType
- Type
将应用自定义属性的 Type
对象。
- inherit
- Boolean
指定是否遍历属性的继承链以查找自定义属性。
返回
如果在此属性上定义一个或多个 attributeType
实例,则为 true
;否则为 false
。
例外
不支持此方法。
注解
使用 Type.GetType 或 Assembly.GetType 对属性的父类型进行反思,从类型中检索 Reflection 属性对象,并调用 PropertyInfo.IsDefined。