C# Class Gammtek.Conduit.IO.BitStreamReader

Stream class for writing individual bits to a stream. Packs subsequent bytes written to the stream.
Inheritance: BitStream
Datei anzeigen Open project: ME3Explorer/ME3Explorer

Public Methods

Method Description
BitStreamReader ( ) : System

Initializes a new instance of the BitStreamReader class.

BitStreamReader ( Stream stream ) : System

Initializes a new instance of the BitStreamReader class with backing stream. The stream will be automatically closed when this stream is closed.

BitStreamReader ( Stream stream, bool leaveOpen ) : System

Initializes a new instance of the BitStreamReader class with backing stream. The stream will be closed only if leaveOpen is false.

Read ( byte buffer, int offset, int count ) : int

When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.

ReadBoolean ( ) : bool

Reads the a boolean as a single bit from the stream.

ReadByte ( ) : int

Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.

Seek ( long offset, SeekOrigin origin ) : long

When overridden in a derived class, sets the position within the current stream.

SetLength ( long value ) : void

When overridden in a derived class, sets the length of the current stream.

Write ( bool value ) : void

Writes a bit to the stream.

Write ( byte buffer, int offset, int count ) : void

When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.

WriteByte ( byte value ) : void

Writes a byte to the current position in the stream and advances the position within the stream by one byte.

Private Methods

Method Description
AddByteToBuffer ( ) : int

Method Details

BitStreamReader() public method

Initializes a new instance of the BitStreamReader class.
public BitStreamReader ( ) : System
return System

BitStreamReader() public method

Initializes a new instance of the BitStreamReader class with backing stream. The stream will be automatically closed when this stream is closed.
public BitStreamReader ( Stream stream ) : System
stream Stream
return System

BitStreamReader() public method

Initializes a new instance of the BitStreamReader class with backing stream. The stream will be closed only if leaveOpen is false.
public BitStreamReader ( Stream stream, bool leaveOpen ) : System
stream Stream
leaveOpen bool
return System

Read() public method

When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
public Read ( byte buffer, int offset, int count ) : int
buffer byte
offset int
count int
return int

ReadBoolean() public method

Reads the a boolean as a single bit from the stream.
public ReadBoolean ( ) : bool
return bool

ReadByte() public method

Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.
public ReadByte ( ) : int
return int

Seek() public method

When overridden in a derived class, sets the position within the current stream.
public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
return long

SetLength() public method

When overridden in a derived class, sets the length of the current stream.
public SetLength ( long value ) : void
value long /// The desired length of the current stream in bytes. ///
return void

Write() public method

Writes a bit to the stream.
public Write ( bool value ) : void
value bool
return void

Write() public method

When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
return void

WriteByte() public method

Writes a byte to the current position in the stream and advances the position within the stream by one byte.
public WriteByte ( byte value ) : void
value byte /// The byte to write to the stream. ///
return void