Debug::Listeners Property
Gets the collection of listeners that is monitoring the debug output.
Assembly: System (in System.dll)
public: property TraceListenerCollection^ Listeners { [SecurityPermissionAttribute(SecurityAction::LinkDemand, Flags = SecurityPermissionFlag::UnmanagedCode)] [HostProtectionAttribute(SecurityAction::LinkDemand, SharedState = true)] static TraceListenerCollection^ get(); }
Property Value
Type: System.Diagnostics::TraceListenerCollection^A 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.
for operating with unmanaged code. Demand value LinkDemand; associated enumeration: SecurityPermissionFlag::UnmanagedCode.
Available since 1.1
