C# Class Mosa.AppSystem.AppOutputStream

Inheritance: System.IO.Stream
Afficher le fichier Open project: tgiphil/MOSA-Project Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

AppOutputStream() public méthode

Initializes a new instance of the AppOutputStream class.
public AppOutputStream ( ConsoleSession session ) : System.IO
session Mosa.Kernel.x86.ConsoleSession The session.
Résultat System.IO

Flush() public méthode

public Flush ( ) : void
Résultat void

Read() public méthode

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.
Résultat int

ReadByte() public méthode

public ReadByte ( ) : int
Résultat int

Seek() public méthode

Seeks the specified offset.
public Seek ( long offset, SeekOrigin origin ) : long
offset long The offset.
origin SeekOrigin The origin.
Résultat long

SetLength() public méthode

Sets the length.
public SetLength ( long value ) : void
value long The value.
Résultat void

Write() public méthode

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.
Résultat void

WriteByte() public méthode

Writes the byte.
public WriteByte ( byte value ) : void
value byte The value.
Résultat void