C# Class SubStream, LynnaLab

Inheritance: Stream
Mostrar archivo Open project: Drenn1/LynnaLab Class Usage Examples

Public Methods

Method Description
Flush ( ) : void
Read ( byte buffer, int offset, int count ) : int
ReadByte ( ) : int
Seek ( long dest, SeekOrigin, origin ) : long
SetLength ( long len ) : void
SubStream ( Stream stream, int offset, int size ) : System
Write ( byte buffer, int offset, int count ) : void
WriteByte ( byte value ) : void

Method Details

Flush() public method

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

ReadByte() public method

public ReadByte ( ) : int
return int

Seek() public method

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

SetLength() public method

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

SubStream() public method

public SubStream ( Stream stream, int offset, int size ) : System
stream Stream
offset int
size int
return System

Write() public method

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

WriteByte() public method

public WriteByte ( byte value ) : void
value byte
return void