IBitStream Methods |
The IBitStream type exposes the following members.
Name | Description | |
---|---|---|
![]() | Initialise |
Initialises the stream with an array of bytes. The read methods will return bits from those bytes.
|
![]() | ReadBit |
Returns the next bit from the stream. A true value indicates that the next bit was set, a false value indicates the next bit was clear.
|
![]() | ReadByte |
Returns up to the next 8 bits from the stream.
|
![]() | ReadUInt16 |
Returns up to the next 16 bits from the stream in big-endian order.
|
![]() | ReadUInt32 |
Returns up to the next 32 bits from the stream in big-endian order.
|
![]() | ReadUInt64 |
Returns up to the next 64 bits from the stream in big-endian order.
|
![]() | Skip |
Skips a number of bits in the stream.
|