Close (inherited from BinaryReader) | Closes the current reader and the underlying stream. |
Equals (inherited from Object) | Determines whether the specified Object is equal to the current Object. |
GetHashCode (inherited from Object) | Serves as a hash function for a particular type, suitable
for use in hashing algorithms and data structures like a hash table. |
GetType (inherited from Object) | Gets the Type of the current instance. |
PeekChar (inherited from BinaryReader) | Returns the next available character and does not advance the byte or character
position. |
Read (inherited from BinaryReader) | Reads count bytes from the stream with
index as the starting point in the byte array. |
Read (inherited from BinaryReader) | Reads count characters from the stream with index
as the starting point in the character array. |
Read (inherited from BinaryReader) | Reads characters from the underlying stream and advances
the current position of the stream in accordance with the
Encoding used and the specific character being read from the stream. |
ReadBoolean (inherited from BinaryReader) | Reads a Boolean
from the current stream and advances the current position of the
stream by one byte. |
ReadByte (inherited from BinaryReader) | Reads the next byte from the current stream and advances the current position
of the stream by 1 byte. |
ReadBytes (inherited from BinaryReader) | Reads count bytes from the current stream into a byte array
and advances the current position by count bytes. |
ReadChar (inherited from BinaryReader) | Reads the next character from the current stream and
advances the current position of the stream in accordance with the
Encoding
used and the
specific character being read from the stream. |
ReadChars (inherited from BinaryReader) | Reads count characters from
the current stream, returns the data in a character array, and advances the
current position in accordance with the Encoding
used and the specific character being read from the
stream. |
ReadDecimal (inherited from BinaryReader) | Reads a decimal value from the current stream and
advances the current position of the stream by sixteen bytes. |
ReadDouble (inherited from BinaryReader) | Reads an 8-byte floating point value from the current stream and
advances the current position of the stream by eight bytes. |
ReadInt16 (inherited from BinaryReader) | Reads a 2-byte signed integer from the current stream and advances the
current position of the stream by two bytes. |
ReadInt32 (inherited from BinaryReader) | Reads a 4-byte signed integer from the current stream and advances the
current position of the stream by four bytes. |
ReadInt64 (inherited from BinaryReader) | Reads an 8-byte signed integer from the current stream and advances the
current position of the stream by four bytes. |
ReadIntBE |
Reads a 4-byte signed integer using the big-endian layout from the current stream and advances the current position of the stream by two bytes.
|
ReadSByte (inherited from BinaryReader) | Reads a signed byte from this stream and advances the current position of the
stream by one byte. |
ReadSingle (inherited from BinaryReader) | Reads a 4-byte floating point value from the current stream
and advances the current position of the stream by four bytes. |
ReadString (inherited from BinaryReader) | Reads a String from the current stream. The String is
prefixed with the length, encoded as
an integer 7 bits
at a time. |
ReadUInt16 (inherited from BinaryReader) | Reads a 2-byte unsigned integer from the current stream using little
endian encoding and advances the position of the stream by two bytes. |
ReadUInt32 (inherited from BinaryReader) | Reads a 4-byte unsigned integer from the current stream and advances the
position of the stream by four bytes. |
ReadUInt64 (inherited from BinaryReader) | Reads an 8-byte unsigned integer from the current stream and advances the
position of the stream by eight bytes. |
ToString (inherited from Object) | Returns a String that represents the current Object. |