C# Class Alexandria.Platforms.Wii.DolphinCompressedDiscStream

A Stream for reading from a DolphinCompressedDisc.
Inheritance: Stream
显示文件 Open project: Burton-Radons/Alexandria Class Usage Examples

Public Methods

Method Description
DolphinCompressedDiscStream ( DolphinCompressedDisc disc ) : System
Flush ( ) : void

Has no effect.

Read ( byte buffer, int offset, int count ) : int
Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long value ) : void

Throws an exception.

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

Throws an exception.

Method Details

DolphinCompressedDiscStream() public method

public DolphinCompressedDiscStream ( DolphinCompressedDisc disc ) : System
disc DolphinCompressedDisc
return System

Flush() public method

Has no effect.
public Flush ( ) : void
return void

Read() public method

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

Seek() public method

public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
return long

SetLength() public method

Throws an exception.
public SetLength ( long value ) : void
value long
return void

Write() public method

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