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!

Debug.WriteLine

Writes information about the trace followed by a line terminator to the trace listeners in the Listeners collection.

Overload List

Writes a message followed by a line terminator to the trace listeners in the Listeners collection. The default line terminator is a carriage return followed by a line feed ("\r\n").

[Visual Basic] Overloads Public Shared Sub WriteLine(String)
[C#] public static void WriteLine(String);
[C++] public: static void WriteLine(String*);
[JScript] public static function WriteLine(String);

Writes the name of the value parameter followed by a line terminator to the trace listeners in the Listeners collection. The default line terminator is a carriage return followed by a line feed ("\r\n").

[Visual Basic] Overloads Public Shared Sub WriteLine(Object)
[C#] public static void WriteLine(Object);
[C++] public: static void WriteLine(Object*);
[JScript] public static function WriteLine(Object);

Writes a category name and the name of the value parameter followed by a line terminator to the trace listeners in the Listeners collection. The default line terminator is a carriage return followed by a line feed ("\r\n").

[Visual Basic] Overloads Public Shared Sub WriteLine(Object, String)
[C#] public static void WriteLine(Object, String);
[C++] public: static void WriteLine(Object*, String);
[JScript] public static function WriteLine(Object, String);

Writes a category name and message followed by a line terminator to the trace listeners in the Listeners collection. The default line terminator is a carriage return followed by a line feed ("\r\n").

[Visual Basic] Overloads Public Shared Sub WriteLine(String, String)
[C#] public static void WriteLine(String, String);
[C++] public: static void WriteLine(String*, String*);
[JScript] public static function WriteLine(String, String);

See Also

Debug Class | Debug Members | System.Diagnostics Namespace