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!

TextWriter.Synchronized

Creates a synchronized wrapper around the specified TextWriter.

[Visual Basic]
Public Shared Function Synchronized( _
   ByVal t As TextWriter _
) As TextWriter
[C#]
public static TextWriter Synchronized(
   TextWriter t
);
[C++]
public: static TextWriter* Synchronized(
   TextWriter* t
);
[JScript]
public static function Synchronized(
   t : TextWriter
) : TextWriter;

Parameters

t
The TextWriter to synchronize.

Return Value

A synchronized TextWriter.

Exceptions

Exception Type Condition
ArgumentNullException t is null.

Remarks

[To be supplied.]

See Also

TextWriter Class | TextWriter Members | System.IO Namespace