TypeDescriptor::GetEvents Method (Object^, Boolean)
.NET Framework (current version)
Returns the collection of events for a specified component with a custom type descriptor.
Assembly: System (in System.dll)
public: static EventDescriptorCollection^ GetEvents( Object^ component, bool noCustomTypeDesc )
Parameters
- component
-
Type:
System::Object^
A component to get the events for.
- noCustomTypeDesc
-
Type:
System::Boolean
true to consider custom type description information; otherwise, false.
Return Value
Type: System.ComponentModel::EventDescriptorCollection^An EventDescriptorCollection with the events for this component.
| Exception | Condition |
|---|---|
| NotSupportedException | component is a cross-process remoted object. |
This method retrieves a collection of events that the given component parameter instance provides. This can differ from the set of events the class provides. If the component parameter is sited, the site can add or remove additional events.
If component is null, an empty collection is returned.
The order of the returned collection is not guaranteed to be identical between calls, so always order it before use.
.NET Framework
Available since 1.1
Available since 1.1
Show: