Delegate EventHandler<TEventArgs>
Represents the method that will handle an event when the event provides data.
Namespace: System
Assembly: mscorlib.dll
Syntax
public delegate void EventHandler<TEventArgs>(object sender, TEventArgs e);
Parameters
Type | Name | Description |
---|---|---|
Object | sender | The source of the event. |
TEventArgs | e | An object that contains the event data. |
Type Parameters
Name | Description |
---|---|
TEventArgs | The type of the event data generated by the event. |