DynamicMethod.GetCustomAttributes 方法

定义

返回应用于此方法的自定义属性。

重载

GetCustomAttributes(Boolean)

返回为该方法定义的所有自定义属性。

GetCustomAttributes(Type, Boolean)

返回已应用到此方法的指定类型的自定义属性。

GetCustomAttributes(Boolean)

Source:
DynamicMethod.cs
Source:
DynamicMethod.cs
Source:
DynamicMethod.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,则搜索方法的继承链以查找自定义属性;如果为 false,则仅检查当前方法。

返回

Object[]

一个对象数组,这些对象表示此方法的所有自定义属性。

注解

对于动态方法,指定 trueinherit 不起作用,因为方法未在 类型中声明。

注意

动态方法当前不支持自定义属性。 返回的唯一属性是 MethodImplAttribute;可以使用 方法更轻松地 GetMethodImplementationFlags 获取方法实现标志。

另请参阅

适用于

GetCustomAttributes(Type, Boolean)

Source:
DynamicMethod.cs
Source:
DynamicMethod.cs
Source:
DynamicMethod.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

表示要返回的自定义属性的类型的 Type

inherit
Boolean

如果为 true,则搜索方法的继承链以查找自定义属性;如果为 false,则仅检查当前方法。

返回

Object[]

对象的数组,其中的对象表示方法的类型为 attributeType 的属性,或从类型 attributeType 派生的属性。

例外

attributeTypenull

注解

对于动态方法,指定 trueinherit 不起作用,因为方法未在 类型中声明。

注意

动态方法当前不支持自定义属性。 返回的唯一属性是 MethodImplAttribute;可以使用 方法更轻松地 GetMethodImplementationFlags 获取方法实现标志。

另请参阅

适用于