C# Класс Gammtek.Conduit.IO.BitStreamReader

Stream class for writing individual bits to a stream. Packs subsequent bytes written to the stream.
Наследование: BitStream
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Приватные методы

Метод Описание
AddByteToBuffer ( ) : int

Описание методов

BitStreamReader() публичный Метод

Initializes a new instance of the BitStreamReader class.
public BitStreamReader ( ) : System
Результат System

BitStreamReader() публичный Метод

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
Результат System

BitStreamReader() публичный Метод

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
Результат System

Read() публичный Метод

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
Результат int

ReadBoolean() публичный Метод

Reads the a boolean as a single bit from the stream.
public ReadBoolean ( ) : bool
Результат bool

ReadByte() публичный Метод

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
Результат int

Seek() публичный Метод

When overridden in a derived class, sets the position within the current stream.
public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
Результат long

SetLength() публичный Метод

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. ///
Результат void

Write() публичный Метод

Writes a bit to the stream.
public Write ( bool value ) : void
value bool
Результат void

Write() публичный Метод

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
Результат void

WriteByte() публичный Метод

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. ///
Результат void