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

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

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

Метод Описание
BitStreamWriter ( ) : System

Initializes a new instance of the BitStreamWriter class.

BitStreamWriter ( Stream stream ) : System

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

BitStreamWriter ( Stream stream, bool leaveOpen ) : System

Initializes a new instance of the BitStreamWriter 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.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Flushes the buffer and optionally closes the base stream.

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

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

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

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

Initializes a new instance of the BitStreamWriter class with backing stream. The stream will be automatically closed when this stream is closed.
public BitStreamWriter ( Stream stream ) : System
stream Stream
Результат System

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

Initializes a new instance of the BitStreamWriter class with backing stream. The stream will be closed only if leaveOpen is false.
public BitStreamWriter ( Stream stream, bool leaveOpen ) : System
stream Stream
leaveOpen bool
Результат System

Dispose() защищенный Метод

Flushes the buffer and optionally closes the base stream.
protected Dispose ( bool disposing ) : void
disposing bool
Результат void

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