C# Class ManagedXZ.XZDecompressStream

Inheritance: Stream
Mostrar archivo Open project: goldenbull/ManagedXZ Class Usage Examples

Public Methods

Method Description
Flush ( ) : void
Read ( byte buffer, int offset, int count ) : int

learn from 02_decompress.c

Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long value ) : void
Write ( byte buffer, int offset, int count ) : void
XZDecompressStream ( Stream stream ) : System
XZDecompressStream ( string filename ) : System

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Private Methods

Method Description
Init ( ) : void

Method Details

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Flush() public method

public Flush ( ) : void
return void

Read() public method

learn from 02_decompress.c
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

public SetLength ( long value ) : void
value long
return void

Write() public method

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

XZDecompressStream() public method

public XZDecompressStream ( Stream stream ) : System
stream Stream
return System

XZDecompressStream() public method

public XZDecompressStream ( string filename ) : System
filename string
return System