 | IEventHandler<T> Delegate |
Delegate for the IEventHandler events
Namespace:
EBP.Api.Interfaces.Misc
Assembly:
EBP.Api.Common (in EBP.Api.Common.dll) Version: 1.0.2835.45 (1.0.2835.45)
Syntaxpublic delegate void IEventHandler<T>(
Object sender,
T e
)
where T : IEventArgs
Public Delegate Sub IEventHandler(Of T As IEventArgs) (
sender As Object,
e As T
)
Parameters
- sender
- Type: System.Object
the sender object - e
- Type: T
the EventArgs containing the event data
Type Parameters
- T
- the event args type
See Also