NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TraceListener.WriteLine (String, String)

Writes a category name and 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 Overridable Public Sub WriteLine( _
   ByVal message As String, _
   ByVal category As String _
)
[C#]
public virtual void WriteLine(
   string message,
   string category
);
[C++]
public: virtual void WriteLine(
   String* message,
   String* category
);
[JScript]
public function WriteLine(
   message : String,
   category : String
);

Parameters

message
A message to write.
category
A category name to write.

See Also

TraceListener Class | TraceListener Members | System.Diagnostics Namespace | TraceListener.WriteLine Overload List | TraceListener | DefaultTraceListener | TextWriterTraceListener | Debug | Trace