EventDescriptor Class
Provides information about an event.
Namespace: System.ComponentModel
Assembly: System (in System.dll)
The EventDescriptor type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | EventDescriptor(MemberDescriptor) | Initializes a new instance of the EventDescriptor class with the name and attributes in the specified MemberDescriptor. |
![]() ![]() | EventDescriptor(MemberDescriptor, Attribute[]) | Initializes a new instance of the EventDescriptor class with the name in the specified MemberDescriptor and the attributes in both the MemberDescriptor and the Attribute array. |
![]() ![]() | EventDescriptor(String, Attribute[]) | Initializes a new instance of the EventDescriptor class with the specified name and attribute array. |
| Name | Description | |
|---|---|---|
![]() ![]() | AttributeArray | Gets or sets an array of attributes. (Inherited from MemberDescriptor.) |
![]() | Attributes | Gets the collection of attributes for this member. (Inherited from MemberDescriptor.) |
![]() | Category | Gets the name of the category to which the member belongs, as specified in the CategoryAttribute. (Inherited from MemberDescriptor.) |
![]() ![]() | ComponentType | When overridden in a derived class, gets the type of component this event is bound to. |
![]() | Description | Gets the description of the member, as specified in the DescriptionAttribute. (Inherited from MemberDescriptor.) |
![]() | DesignTimeOnly | Gets whether this member should be set only at design time, as specified in the DesignOnlyAttribute. (Inherited from MemberDescriptor.) |
![]() ![]() | DisplayName | Gets the name that can be displayed in a window, such as a Properties window. (Inherited from MemberDescriptor.) |
![]() ![]() | EventType | When overridden in a derived class, gets the type of delegate for the event. |
![]() | IsBrowsable | Gets a value indicating whether the member is browsable, as specified in the BrowsableAttribute. (Inherited from MemberDescriptor.) |
![]() ![]() | IsMulticast | When overridden in a derived class, gets a value indicating whether the event delegate is a multicast delegate. |
![]() ![]() | Name | Gets the name of the member. (Inherited from MemberDescriptor.) |
![]() ![]() | NameHashCode | Gets the hash code for the name of the member, as specified in GetHashCode. (Inherited from MemberDescriptor.) |
| Name | Description | |
|---|---|---|
![]() ![]() | AddEventHandler | When overridden in a derived class, binds the event to the component. |
![]() ![]() | CreateAttributeCollection | Creates a collection of attributes using the array of attributes passed to the constructor. (Inherited from MemberDescriptor.) |
![]() ![]() | Equals | Compares this instance to the given object to see if they are equivalent. (Inherited from MemberDescriptor.) In XNA Framework 3.0, this member is inherited from Object.Equals(Object). |
![]() ![]() | FillAttributes | When overridden in a derived class, adds the attributes of the inheriting class to the specified list of attributes in the parent class. (Inherited from MemberDescriptor.) |
![]() ![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() ![]() | GetHashCode | Returns the hash code for this instance. (Inherited from MemberDescriptor.) |
![]() | GetInvocationTarget | Retrieves the object that should be used during invocation of members. (Inherited from MemberDescriptor.) |
![]() ![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() ![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() ![]() | RemoveEventHandler | When overridden in a derived class, unbinds the delegate from the component so that the delegate will no longer receive events from the component. |
![]() ![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
An EventDescriptor consists of a name, its attributes, the component that the event is bound to, the event delegate, the type of delegate, and whether the delegate is multicast.
EventDescriptor provides the following abstract properties and methods:
ComponentType contains the type of the component this event is declared on.
EventType contains the type of delegate for the event.
IsMulticast contains a value indicating whether the event delegate is a multicast delegate.
AddEventHandler binds the event to a component.
RemoveEventHandler unbinds the delegate from the component so that the delegate no longer receives events from the component.
For more information about events, see Raising an Event. For more information about reflection, see the topics in Reflection in the .NET Framework.
Note |
|---|
The HostProtectionAttribute attribute applied to this type or member has the following Resources property value: SharedState. The HostProtectionAttribute does not affect desktop applications (which are typically started by double-clicking an icon, typing a command, or entering a URL in a browser). For more information, see the HostProtectionAttribute class or SQL Server Programming and Host Protection Attributes. |
The following code example is built upon the example in the EventDescriptorCollection class. It prints the information (category, description, and display name) of each event on a button in a text box. It requires that button1 and textbox1 have been instantiated on a form.
EventDescriptorCollection events = TypeDescriptor.GetEvents(button1); // Displays each event's information in the collection in a text box. foreach (System.ComponentModel.EventDescriptor myEvent in events) { textBox1.Text += myEvent.Category + '\n'; textBox1.Text += myEvent.Description + '\n'; textBox1.Text += myEvent.DisplayName + '\n'; }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.





Note