When overridden in a dervied class, writes a message followed by a line terminator. The default line terminator is a carriage return followed by a line feed ("\r\n").
[Visual Basic] Overloads MustOverride Public Sub WriteLine( _ ByVal message As String _ ) [C#] public abstract void WriteLine( string message ); [C++] public: virtual void WriteLine( String* message ) = 0; [JScript] public abstract function WriteLine( message : String );
Notes to Inheritors: When inheriting from this class, you must override this method. To support an indentation, you should call WriteIndent if NeedIndent is true. If you need to indent the following line, you must reset NeedIndent to true.
TraceListener Class | TraceListener Members | System.Diagnostics Namespace | TraceListener.WriteLine Overload List | TraceListener | DefaultTraceListener | TextWriterTraceListener | Debug | Trace