'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.
Property | Description |
---|---|
Arguments | Gets the arguments. |
Exception | Gets the exception. |
Format | Gets the format. |
Message | Gets the message. |
TraceMask | 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