The methods of System.IO.BinaryReader are listed below. For a list of all members, see the BinaryReader Members list.
See Also: Inherited members from System.Object
Close() Closes the current instance of System.IO.BinaryReader, releasing any system resources associated with it.PeekChar() : int Documentation for this section has not yet been entered.Read() : int Documentation for this section has not yet been entered.Read(byte[], int, int) : int Documentation for this section has not yet been entered.Read(char[], int, int) : int Documentation for this section has not yet been entered.ReadBoolean() : bool Reads the next byte from the stream as boolean and advances the current position by one byte.ReadByte() : byte Reads the next byte from the stream and advances the current position by one byte.ReadBytes(int) : byte[] Reads a maximum of count bytes from the stream and advances the current position by the number of bytes read.ReadChar() : char Reads the next character from the stream and advances the current position by one character. Current character encoding rules apply.ReadChars(int) : char[] Reads a maximum of count characters from the stream and advances the current position by the number of characters read. Current character encoding rules apply.ReadDecimal() : decimal Documentation for this section has not yet been entered.ReadDouble() : double Documentation for this section has not yet been entered.ReadInt16() : short Documentation for this section has not yet been entered.ReadInt32() : int Documentation for this section has not yet been entered.ReadInt64() : long Documentation for this section has not yet been entered.ReadSByte() : sbyte Documentation for this section has not yet been entered.ReadSingle() : float Documentation for this section has not yet been entered.ReadString() : string Documentation for this section has not yet been entered.ReadUInt16() : ushort Documentation for this section has not yet been entered.ReadUInt32() : uint Documentation for this section has not yet been entered.ReadUInt64() : ulong Documentation for this section has not yet been entered.
Dispose(bool) Documentation for this section has not yet been entered.FillBuffer(int) Documentation for this section has not yet been entered.Read7BitEncodedInt() : int Decodes a compressed integer (similar but not ASN.1 BER, nor Perl BER format). The bytes represent an integer in base 128, least significant digits first with as few digits as possible. The high bit (8) is set on each byte except the last.