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.Write (String)

When overridden in a derived class, writes the message.

[Visual Basic]
Overloads MustOverride Public Sub Write( _
   ByVal message As String _
)
[C#]
public abstract void Write(
   string message
);
[C++]
public: virtual void Write(
   String* message
) = 0;
[JScript]
public abstract function Write(
   message : String
);

Parameters

message
A message to write.

Remarks

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.

See Also

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