PropertyBuilder.GetCustomAttributes 方法

定义

返回在此属性上定义的所有自定义属性。

重载

GetCustomAttributes(Type, Boolean)

返回由 Type 标识的自定义属性数组。

GetCustomAttributes(Boolean)

返回此属性的所有自定义属性的数组。

GetCustomAttributes(Type, Boolean)

Source:
PropertyBuilder.cs

返回由 Type 标识的自定义属性数组。

public:
 override cli::array <System::Object ^> ^ GetCustomAttributes(Type ^ attributeType, bool inherit);
public override object[] GetCustomAttributes (Type attributeType, bool inherit);
override this.GetCustomAttributes : Type * bool -> obj[]
Public Overrides Function GetCustomAttributes (attributeType As Type, inherit As Boolean) As Object()

参数

attributeType
Type

由类型标识的自定义属性数组。

inherit
Boolean

如果为 true,则遍历此属性的继承链以查找自定义属性。

返回

Object[]

在该反映成员上定义的自定义属性的数组,如果未在该成员上定义任何属性,则为 null

例外

不支持此方法。

注解

使用 Type.GetType 或 Assembly.GetType 对属性的父类型进行反思,从类型中检索 Reflection 属性对象,并调用 PropertyInfo.GetCustomAttributes。

适用于

GetCustomAttributes(Boolean)

Source:
PropertyBuilder.cs

返回此属性的所有自定义属性的数组。

public:
 override cli::array <System::Object ^> ^ GetCustomAttributes(bool inherit);
public override object[] GetCustomAttributes (bool inherit);
override this.GetCustomAttributes : bool -> obj[]
Public Overrides Function GetCustomAttributes (inherit As Boolean) As Object()

参数

inherit
Boolean

如果为 true,则遍历此属性的继承链以查找自定义属性。

返回

Object[]

一个包含所有自定义属性的数组。

例外

不支持此方法。

注解

使用 Type.GetType 或 Assembly.GetType 对属性的父类型进行反思,从类型中检索 Reflection 属性对象,并调用 PropertyInfo.GetCustomAttributes。

适用于