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!

TextReader.Synchronized

Creates a synchronized wrapper around the specified TextReader.

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

Parameters

t
The TextReader to synchronize.

Return Value

A synchronized TextReader.

Exceptions

Exception Type Condition
ArgumentNullException t is a null reference (in Visual Basic Nothing).

See Also

TextReader Class | TextReader Members | System.IO Namespace