GenericTypeParameterBuilder.GetCustomAttributes 方法

定义

不支持不完整的泛型类型参数。

重载

GetCustomAttributes(Boolean)

不支持不完整的泛型类型参数。

GetCustomAttributes(Type, Boolean)

不支持不完整的泛型类型参数。

GetCustomAttributes(Boolean)

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

不支持不完整的泛型类型参数。

例外

在所有情况下。

注解

不完整的泛型类型参数不支持此方法。 从已完成的泛型类型定义中检索类型参数,然后在检索到的类型上使用反射。

适用于