TypeBuilder.GetCustomAttributes 方法

定义

返回为此类型定义的自定义属性。

重载

GetCustomAttributes(Boolean)

返回为此类型定义的所有自定义属性。

GetCustomAttributes(Type, Boolean)

返回当前类型的所有自定义属性,该属性可分配给指定类型。

GetCustomAttributes(Boolean)

Source:
TypeBuilder.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

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

返回

Object[]

返回一个对象数组,其中的对象表示此类型的所有自定义属性。

例外

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

适用于

GetCustomAttributes(Type, Boolean)

Source:
TypeBuilder.cs

返回当前类型的所有自定义属性,该属性可分配给指定类型。

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

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

返回

Object[]

在当前类型上定义的自定义属性数组。

例外

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

attributeTypenull

该类型必须是由基础运行时系统提供的类型。

适用于