Click or drag to resize
IBitStream Methods

The IBitStream type exposes the following members.

Methods
  NameDescription
Public methodInitialise
Initialises the stream with an array of bytes. The read methods will return bits from those bytes.
Public methodReadBit
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.
Public methodReadByte
Returns up to the next 8 bits from the stream.
Public methodReadUInt16
Returns up to the next 16 bits from the stream in big-endian order.
Public methodReadUInt32
Returns up to the next 32 bits from the stream in big-endian order.
Public methodReadUInt64
Returns up to the next 64 bits from the stream in big-endian order.
Public methodSkip
Skips a number of bits in the stream.
Top
See Also