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!

BinaryReader.Read

Reads the next character from the underlying stream and advances the current position of the stream.

Overload List

Reads a block of bytes from the current stream into a byte array and advances the current position by count bytes.

[Visual Basic] Overloads Overridable Public Function Read(Byte(), Integer, Integer) As Integer
[C#] public virtual int Read(byte[], int, int);
[C++] public: virtual int Read(unsigned char*[], int, int);
[JScript] public function Read(Byte[], int, int) : int;

Reads the next character from the underlying stream and advances the current position of the stream in accordance with the Encoding used and perhaps the particular character being read from the stream.

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

Reads a block of characters from the current stream into a character array and advances the current position in accordance with the Encoding used and perhaps the particular character being read from the stream.

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

See Also

BinaryReader Class | BinaryReader Members | System.IO Namespace