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