TypeBuilder.IsDefined(Type, Boolean) 方法

定义

确定是否将自定义属性应用于当前类型。

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

要搜索的属性的类型。 仅返回可分配给此类型的属性。

inherit
Boolean

指定是否搜索此成员的继承链以查找属性。

返回

如果针对此类型定义了 attributeType 的一个或多个实例,或定义了从 attributeType 派生的属性,则为 true;否则为 false

例外

不完整类型目前不支持此方法。 使用 GetType() 检索此类型,并对返回的 Type 调用 IsDefined(Type, Boolean)

未定义attributeType

attributeTypenull

注解

不完整的泛型类型参数不支持此方法。 使用 Type.GetTypeAssembly.GetType 检索类型,并在检索的类型上使用反射。

适用于