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