Opc.Ua.Core
TraceEventHandler Event



Opc.Ua Namespace > Tracing Class : TraceEventHandler Event
Occurs when a trace call is made.
Syntax
'Declaration
 
Public Event TraceEventHandler As EventHandler(Of TraceEventArgs)
'Usage
 
Dim instance As Tracing
Dim handler As EventHandler(Of TraceEventArgs)
 
AddHandler instance.TraceEventHandler, handler
public event EventHandler<TraceEventArgs> TraceEventHandler
public:
event EventHandler<TraceEventArgs^>^ TraceEventHandler
Event Data

The event handler receives an argument of type TraceEventArgs containing data related to this event. The following TraceEventArgs properties provide information specific to this event.

PropertyDescription
Gets the arguments.  
Gets the exception.  
Gets the format.  
Gets the message.  
Gets the trace mask.  
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also