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!

StreamReader.Read

Reads the next character or next set of characters from the input stream.

Overload List

Reads a maximum of count characters from the current stream and writes the data to buffer, beginning at index.

[Visual Basic] Overloads Overrides Public Function Read(Char(), Integer, Integer) As Integer
[C#] public override int Read(char[], int, int);
[C++] public: override int Read(__wchar_t*[], int, int);
[JScript] public override function Read(Char[], int, int) : int;

Reads the next character from the input stream and advances the character position within the stream by one character.

[Visual Basic] Overloads Overrides Public Function Read() As Integer
[C#] public override int Read();
[C++] public: override int Read();
[JScript] public override function Read() : int;

See Also

StreamReader Class | StreamReader Members | System.IO Namespace