Debug.Listeners Property
Gets the collection of listeners that is monitoring the debug output.
Assembly: System (in System.dll)
Property Value
Type: System.Diagnostics.TraceListenerCollectionA TraceListenerCollection representing a collection of type TraceListener that monitors the debug output.
The listeners produce formatted output from the debug output. By default, the collection contains an instance of the DefaultTraceListener class. 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. To redirect output to a file or stream, add an instance of the TextWriterTraceListener.
The following example creates a TextWriterTraceListener that outputs to the console screen. The code then adds the new listener to the Listeners.
- SecurityPermission
for operating with unmanaged code. Demand value LinkDemand; 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