Delegate Handler<T>
Represents the method that will handle an event when the event provides data.
public delegate void Handler<in T>(object sender, T e)
Parameters
senderobject- The source of the event.
eT- The event data.
Type Parameters
T- The type of the event data.