Trace::Listeners Property
Gets the collection of listeners that is monitoring the trace output.
Assembly: System (in System.dll)
public: static property TraceListenerCollection^ Listeners { TraceListenerCollection^ get (); }
Property Value
Type: System.Diagnostics::TraceListenerCollectionA TraceListenerCollection that represents a collection of type TraceListener monitoring the trace output.
The listeners produce formatted output from the trace output. By default, the collection contains an instance of the DefaultTraceListener class. If you want to remove the default listener, call the Remove method, and pass it the instance of the DefaultTraceListener. To redirect output to the console window, add an instance of the ConsoleTraceListener class.
The following example creates a ConsoleTraceListener that outputs to the console screen. The code then adds the new listener to the Listeners.
- SecurityPermission
for operating with unmanaged code. Security action: Demand. Associated enumeration: SecurityPermissionFlag::UnmanagedCode
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note