TypeDelegator.GetCustomAttributes 方法

定义

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

重载

GetCustomAttributes(Boolean)

返回为此类型定义的所有自定义属性,并指定是否搜索此类型的继承链。

GetCustomAttributes(Type, Boolean)

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

GetCustomAttributes(Boolean)

Source:
TypeDelegator.cs
Source:
TypeDelegator.cs
Source:
TypeDelegator.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[]

一个包含为此类型定义的所有自定义属性的对象数组。

例外

无法加载自定义属性类型。

适用于

GetCustomAttributes(Type, Boolean)

Source:
TypeDelegator.cs
Source:
TypeDelegator.cs
Source:
TypeDelegator.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[]

一个对象数组,包含此类型中定义的与 attributeType 参数匹配的自定义属性,并指定是否搜索此类型的继承链;如果在此类型上未定义自定义属性,则为 null

例外

attributeTypenull

无法加载自定义属性类型。

适用于