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

A BinaryWriter implementation to write individual bits to a stream.
Наследование: System.IO.BinaryWriter
Показать файл Открыть проект

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

Метод Описание
BitBinaryWriter ( ) : System.IO

Initializes a new instance of the BitBinaryWriter class.

BitBinaryWriter ( BitStream stream ) : System.IO

Initializes a new instance of the BitBinaryWriter class with the underlying stream and default encoding (UTF8).

BitBinaryWriter ( BitStream stream, Encoding encoding ) : System.IO

Initializes a new instance of the BitBinaryWriter class with the underlying stream and encoding.

BitBinaryWriter ( Stream stream ) : System.IO

Initializes a new instance of the BitBinaryWriter class with the underlying stream and default encoding (UTF8).

BitBinaryWriter ( Stream stream, Encoding encoding ) : System.IO

Initializes a new instance of the BitBinaryWriter class with the underlying stream and encoding.

Write ( bool value ) : void

Writes a one-bit Boolean value to the current stream, with 0 representing false and 1 representing true.

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

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

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

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

Initializes a new instance of the BitBinaryWriter class with the underlying stream and default encoding (UTF8).
public BitBinaryWriter ( BitStream stream ) : System.IO
stream BitStream
Результат System.IO

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

Initializes a new instance of the BitBinaryWriter class with the underlying stream and encoding.
public BitBinaryWriter ( BitStream stream, Encoding encoding ) : System.IO
stream BitStream
encoding System.Text.Encoding
Результат System.IO

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

Initializes a new instance of the BitBinaryWriter class with the underlying stream and default encoding (UTF8).
public BitBinaryWriter ( Stream stream ) : System.IO
stream System.IO.Stream
Результат System.IO

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

Initializes a new instance of the BitBinaryWriter class with the underlying stream and encoding.
public BitBinaryWriter ( Stream stream, Encoding encoding ) : System.IO
stream System.IO.Stream
encoding System.Text.Encoding
Результат System.IO

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

Writes a one-bit Boolean value to the current stream, with 0 representing false and 1 representing true.
public Write ( bool value ) : void
value bool
Результат void