Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TextWriterTraceListener::Writer Property

 

Gets or sets the text writer that receives the tracing or debugging output.

Namespace:   System.Diagnostics
Assembly:  System (in System.dll)

public:
property TextWriter^ Writer {
	TextWriter^ get();
	void set(TextWriter^ value);
}

Property Value

Type: System.IO::TextWriter^

A TextWriter that represents the writer that receives the tracing or debugging output.

The following example creates a TextWriterTraceListener that writes to the console screen. Then the code adds the new trace listener to the Listeners in the trace class.

#if defined(TRACE)
TextWriterTraceListener^ myWriter = gcnew TextWriterTraceListener;
myWriter->Writer = System::Console::Out;
Trace::Listeners->Add( myWriter );
#endif

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft