Method | Description | |
---|---|---|
BufferedBinaryReader ( Stream stream ) : System |
Creates a new BufferedBinaryReader instance.
|
|
BufferedBinaryReader ( Stream stream, bool useLittleEndian ) : System |
Creates a new BufferedBinaryReader instance.
|
|
PeekByte ( ) : byte |
Peeks the byte.
|
|
PeekBytes ( uint numToPeek ) : byte[] |
Peeks the bytes.
|
|
PeekUInt16 ( ) : ushort |
Peeks an Unsigned int16.
|
|
PeekUInt32 ( ) : uint |
Peeks an Unsigned int32.
|
|
ReadBoolean ( ) : bool |
Reads the bool.
|
|
ReadByte ( ) : byte |
Reads the byte.
|
|
ReadChar ( ) : char |
Reads the char.
|
|
ReadFloat ( ) : float |
Reads the float.
|
|
ReadFloat ( uint numBits ) : float |
Reads the float.
|
|
ReadFloat ( uint numBits, int fractionSize ) : float |
Reads the float.
|
|
ReadFloatWord ( uint mantissaSize, uint fractionSize ) : float |
Reads the float word.
|
|
ReadInt16 ( ) : short |
Reads the int16.
|
|
ReadInt32 ( ) : int |
Reads the int32.
|
|
ReadInt64 ( ) : long |
Reads the int64.
|
|
ReadSBits ( uint bits ) : int |
Reads Signed bits.
|
|
ReadString ( ) : string |
Reads the string.
|
|
ReadString ( uint numChars ) : string |
Reads the string.
|
|
ReadUBits ( uint bits ) : uint |
Reads Unsigned bits.
|
|
ReadUInt16 ( ) : ushort |
Reads an Unsigned int16.
|
|
ReadUInt32 ( ) : uint |
Reads an Unsigned int32.
|
|
ReadUInt64 ( ) : ulong |
Reads an Unsigned int64.
|
|
Seek ( uint position ) : void |
Seeks the specified position.
|
|
Skip ( uint bytes ) : void |
Skips the specified bytes.
|
|
SynchBits ( ) : void |
Synchronizes the bits.
|
Method | Description | |
---|---|---|
ReadInternal ( byte data, int size ) : void |
Reads the given number of bytes from the stream, throwing an exception if they can't all be read.
|
public BufferedBinaryReader ( Stream stream ) : System | ||
stream | Stream | Stream. |
return | System |
public BufferedBinaryReader ( Stream stream, bool useLittleEndian ) : System | ||
stream | Stream | Stream. |
useLittleEndian | bool | Use little endian. |
return | System |
public PeekBytes ( uint numToPeek ) : byte[] | ||
numToPeek | uint | Num to peek. |
return | byte[] |
public ReadFloat ( uint numBits ) : float | ||
numBits | uint | Bits number. |
return | float |
public ReadFloat ( uint numBits, int fractionSize ) : float | ||
numBits | uint | Num bits. |
fractionSize | int | Size of the fraction. |
return | float |
public ReadFloatWord ( uint mantissaSize, uint fractionSize ) : float | ||
mantissaSize | uint | Size of the mantissa. |
fractionSize | uint | Size of the fraction. |
return | float |
public ReadString ( uint numChars ) : string | ||
numChars | uint | Num chars to read. |
return | string |