TextWriterTraceListener Constructor (Stream^, String^)
Initializes a new instance of the TextWriterTraceListener class with the specified name, using the stream as the recipient of the debugging and tracing output.
Assembly: System (in System.dll)
Parameters
- stream
-
Type:
System.IO::Stream^
A Stream that represents the stream the TextWriterTraceListener writes to.
- name
-
Type:
System::String^
The name of the new instance.
| Exception | Condition |
|---|---|
| ArgumentNullException | The stream is null. |
This constructor initializes the Name property to the name parameter or to an empty string (""), if the name parameter is null.
The following code example creates a TextWriterTraceListener using the TextWriterTraceListener(Stream^, String^) constructor and adds it to the TraceListenerCollection. The example then writes two messages to this TextWriterTraceListener and writes a message to all TraceListener objects in the TraceListenerCollection. Finally, it flushes and closes the TextWriterTraceListener.
Available since 1.1