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!

Trace.Write

Writes information about the trace to the trace listeners in the Listeners collection.

Overload List

Writes a category name and the name of the value parameter to the trace listeners in the Listeners collection.

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

Writes the name of the value parameter to the trace listeners in the Listeners collection.

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

Writes a message to the trace listeners in the Listeners collection.

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

Writes a category name and message to the trace listeners in the Listeners collection.

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

See Also

Trace Class | Trace Members | System.Diagnostics Namespace