TypeInfo.DeclaredEvents 属性

定义

获取由当前类型定义的事件的集合。

public:
 virtual property System::Collections::Generic::IEnumerable<System::Reflection::EventInfo ^> ^ DeclaredEvents { System::Collections::Generic::IEnumerable<System::Reflection::EventInfo ^> ^ get(); };
public virtual System.Collections.Generic.IEnumerable<System.Reflection.EventInfo> DeclaredEvents { get; }
member this.DeclaredEvents : seq<System.Reflection.EventInfo>
Public Overridable ReadOnly Property DeclaredEvents As IEnumerable(Of EventInfo)

属性值

由当前类型定义的事件的集合。

注解

若要筛选 属性的结果 DeclaredEvents ,请使用 LINQ 查询。 例如,对于源自运行时 (的反射对象,作为) 的结果 typeof(Object) ,可以使用 类中的 RuntimeReflectionExtensions 方法遍历继承树。 自定义反射上下文中的对象的使用者不能使用这些方法,必须自行遍历继承树。

适用于