C# Class Mosa.AppSystem.AppInputStream

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

Méthodes publiques

Méthode Description
AppInputStream ( ) : System.Collections.Generic

Initializes a new instance of the AppInputStream 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 value ) : void

Writes the specified value.

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

Writes the specified buffer.

WriteByte ( byte value ) : void

Writes the byte.

Method Details

AppInputStream() public méthode

Initializes a new instance of the AppInputStream class.
public AppInputStream ( ) : System.Collections.Generic
Résultat System.Collections.Generic

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 value.
public Write ( byte value ) : void
value byte 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