EventHandler<(Of <(<'TEventArgs>)>)> Delegate
Represents the method that will handle an event when the event provides data.
Namespace:
SystemAssembly: Bridge (in Bridge.dll)
Syntax
[ExternalAttribute] [NameAttribute] public delegate void EventHandler<TEventArgs>( Object sender, TEventArgs e )
<ExternalAttribute> _ <NameAttribute> _ Public Delegate Sub EventHandler(Of TEventArgs) ( _ sender As Object, _ e As TEventArgs _ )
[ExternalAttribute] [NameAttribute] generic<typename TEventArgs> public delegate void EventHandler( Object^ sender, TEventArgs e )
Type Parameters
- TEventArgs
- The type of the event data generated by the event.
Parameters
- sender
- Type: System..::..Object
The source of the event.
- e
- Type: TEventArgs
An object that contains the event data.