QuickOPC User's Guide and Reference
LogEntryEventHandler Delegate



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.Instrumentation Namespace : LogEntryEventHandler Delegate
The source of the event.
An LogEntryEventArgs that contains the event data.
Represents the method that will handle an event raised for loggable entries.
Syntax
'Declaration
 
<CLSCompliantAttribute(True)>
<ComVisibleAttribute(False)>
Public Delegate Sub LogEntryEventHandler( _
   ByVal sender As Object, _
   ByVal e As LogEntryEventArgs _
) 
'Usage
 
Dim 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
An LogEntryEventArgs that contains the event data.
Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also