_EventInfo.GetCustomAttributes 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为 COM 对象提供对 GetCustomAttributes 方法的与版本无关的访问。
重载
GetCustomAttributes(Boolean) |
为 COM 对象提供对 GetCustomAttributes(Boolean) 方法的与版本无关的访问。 |
GetCustomAttributes(Type, Boolean) |
为 COM 对象提供对 GetCustomAttributes(Type, Boolean) 方法的与版本无关的访问。 |
注解
此方法用于从非托管代码访问托管类,不应从托管代码调用。
方法 GetCustomAttributes 返回应用于此成员的所有属性。
GetCustomAttributes(Boolean)
为 COM 对象提供对 GetCustomAttributes(Boolean) 方法的与版本无关的访问。
public:
cli::array <System::Object ^> ^ GetCustomAttributes(bool inherit);
public object[] GetCustomAttributes (bool inherit);
abstract member GetCustomAttributes : bool -> obj[]
Public Function GetCustomAttributes (inherit As Boolean) As Object()
参数
- inherit
- Boolean
如果要搜索成员的继承链以查找这些特性,则为 true
;否则为 false。
返回
一个包含所有自定义属性的数组,在未定义任何特性时为包含零 (0) 个元素的数组。
注解
此方法用于从非托管代码访问托管类,不应从托管代码调用。
方法 GetCustomAttributes 检索 MethodInfo 事件的 方法的对象 AddEventHandler ,并指定是否返回非公共方法
适用于
GetCustomAttributes(Type, Boolean)
为 COM 对象提供对 GetCustomAttributes(Type, Boolean) 方法的与版本无关的访问。
public:
cli::array <System::Object ^> ^ GetCustomAttributes(Type ^ attributeType, bool inherit);
public object[] GetCustomAttributes (Type attributeType, bool inherit);
abstract member GetCustomAttributes : Type * bool -> obj[]
Public Function GetCustomAttributes (attributeType As Type, inherit As Boolean) As Object()
参数
- attributeType
- Type
要搜索的属性的类型。 仅返回可分配给此类型的属性。
- inherit
- Boolean
如果要搜索此成员的继承链以查找属性,则为 true
;否则为 false
。
返回
应用于此成员的自定义属性的数组;如果未应用任何特性,则为包含零 (0) 个元素的数组。
注解
此方法用于从非托管代码访问托管类,不应从托管代码调用。
方法 GetCustomAttributes 返回由 Type标识的自定义属性数组。