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.

TraceListener.WriteLine Method (String)

 

When overridden in a derived class, writes a message to the listener you create in the derived class, followed by a line terminator.

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

Public MustOverride Sub WriteLine (
	message As String
)

Parameters

message
Type: System.String

A message to write.

The typical line terminator you might implement is a carriage return followed by a line feed (\r\n).

Notes to Inheritors:

When inheriting from this class, you must implement this method. To support an indentation, call WriteIndent if NeedIndent is true. To indent the following line, you must reset NeedIndent to true.

.NET Framework
Available since 1.1
Return to top
Show: