C# Класс Mosa.AppSystem.AppOutputStream

Наследование: System.IO.Stream
Показать файл Открыть проект Примеры использования класса

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

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

Initializes a new instance of the AppOutputStream class.

Flush ( ) : void

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

Reads the specified buffer.

ReadByte ( ) : int

Seek ( long offset, SeekOrigin origin ) : long

Seeks the specified offset.

SetLength ( long value ) : void

Sets the length.

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

Writes the specified buffer.

WriteByte ( byte value ) : void

Writes the byte.

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

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

Initializes a new instance of the AppOutputStream class.
public AppOutputStream ( ConsoleSession session ) : System.IO
session Mosa.Kernel.x86.ConsoleSession The session.
Результат System.IO

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

public Flush ( ) : void
Результат void

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

Reads the specified buffer.
public Read ( byte buffer, int offset, int count ) : int
buffer byte The buffer.
offset int The offset.
count int The count.
Результат int

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

public ReadByte ( ) : int
Результат int

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

Seeks the specified offset.
public Seek ( long offset, SeekOrigin origin ) : long
offset long The offset.
origin SeekOrigin The origin.
Результат long

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

Sets the length.
public SetLength ( long value ) : void
value long The value.
Результат void

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

Writes the specified buffer.
public Write ( byte buffer, int offset, int count ) : void
buffer byte The buffer.
offset int The offset.
count int The count.
Результат void

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

Writes the byte.
public WriteByte ( byte value ) : void
value byte The value.
Результат void