C# Class Alexandria.Platforms.Wii.DiscPartitionStream

A stream for decoding a NintendoOpticalDiscPartition.
Inheritance: Stream
Afficher le fichier Open project: Burton-Radons/Alexandria

Méthodes publiques

Méthode Description
DiscPartitionStream ( NintendoOpticalDiscPartition partition ) : System

Create a stream.

Flush ( ) : void

Has no effect.

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

Read data from the partition.

Seek ( long offset, SeekOrigin origin ) : long

Seek to a position within the partition.

SetLength ( long value ) : void

Throws an exception.

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

Throws an exception.

Method Details

DiscPartitionStream() public méthode

Create a stream.
public DiscPartitionStream ( NintendoOpticalDiscPartition partition ) : System
partition NintendoOpticalDiscPartition
Résultat System

Flush() public méthode

Has no effect.
public Flush ( ) : void
Résultat void

Read() public méthode

Read data from the partition.
public Read ( byte buffer, int offset, int count ) : int
buffer byte
offset int
count int
Résultat int

Seek() public méthode

Seek to a position within the partition.
public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
Résultat long

SetLength() public méthode

Throws an exception.
public SetLength ( long value ) : void
value long
Résultat void

Write() public méthode

Throws an exception.
public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
Résultat void