CustomTypeDescriptor.GetEvents 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回此类型说明符所表示对象的事件说明符的集合。
重载
GetEvents() |
返回此类型说明符所表示对象的事件说明符的集合。 |
GetEvents(Attribute[]) |
返回此类型说明符所表示的对象的已筛选事件说明符集合。 |
注解
方法 GetEvents 返回此类型描述符所表示对象的事件描述符集合。 可以提供可选的属性数组来筛选返回的集合。 如果未提供父级,方法将返回 Empty。
GetEvents()
- Source:
- CustomTypeDescriptor.cs
- Source:
- CustomTypeDescriptor.cs
- Source:
- CustomTypeDescriptor.cs
返回此类型说明符所表示对象的事件说明符的集合。
public:
virtual System::ComponentModel::EventDescriptorCollection ^ GetEvents();
public virtual System.ComponentModel.EventDescriptorCollection GetEvents ();
abstract member GetEvents : unit -> System.ComponentModel.EventDescriptorCollection
override this.GetEvents : unit -> System.ComponentModel.EventDescriptorCollection
Public Overridable Function GetEvents () As EventDescriptorCollection
返回
一个 EventDescriptorCollection,包含此类型说明符所表示的对象的事件说明符。 默认值为 Empty。
实现
注解
如果将父自定义类型描述符传递到构造函数中 CustomTypeDescriptor ,该方法 GetEvents 将调用父级的相应方法。
另请参阅
适用于
GetEvents(Attribute[])
- Source:
- CustomTypeDescriptor.cs
- Source:
- CustomTypeDescriptor.cs
- Source:
- CustomTypeDescriptor.cs
返回此类型说明符所表示的对象的已筛选事件说明符集合。
public:
virtual System::ComponentModel::EventDescriptorCollection ^ GetEvents(cli::array <Attribute ^> ^ attributes);
public virtual System.ComponentModel.EventDescriptorCollection GetEvents (Attribute[] attributes);
public virtual System.ComponentModel.EventDescriptorCollection GetEvents (Attribute[]? attributes);
abstract member GetEvents : Attribute[] -> System.ComponentModel.EventDescriptorCollection
override this.GetEvents : Attribute[] -> System.ComponentModel.EventDescriptorCollection
Public Overridable Function GetEvents (attributes As Attribute()) As EventDescriptorCollection
参数
- attributes
- Attribute[]
用作筛选器的特性数组。 它可以是 null
。
返回
一个 EventDescriptorCollection,包含此类型说明符所表示的对象的事件说明。 默认值为 Empty。
实现
注解
可以使用 attributes
参数筛选返回的集合。
如果将父自定义类型描述符传递到构造函数中 CustomTypeDescriptor ,该方法 GetEvents 将调用父级的相应方法。