'Declaration
<CLSCompliantAttribute(True)> <ComVisibleAttribute(False)> Public Delegate Sub ExceptionEventHandler( _ ByVal sender As Object, _ ByVal e As ExceptionEventArgs _ )
'Usage
Dim instance As New ExceptionEventHandler(AddressOf HandlerMethod)
[CLSCompliant(true)] [ComVisible(false)] public delegate void ExceptionEventHandler( object sender, ExceptionEventArgs e )
[CLSCompliant(true)] [ComVisible(false)] public delegate void ExceptionEventHandler( Object^ sender, ExceptionEventArgs^ e )
Parameters
- sender
- The source of the event.
- e
- An ExceptionEventArgs that contains the event data.