Trace.Listeners Property
Gets the collection of listeners that is monitoring the trace output.
Namespace: System.Diagnostics
Assembly: System (in System.dll)
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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note