C# Class Tamir.Streams.InputStream

Summary description for InputStream.
Inheritance: System.IO.Stream
ファイルを表示 Open project: soywiz/csharputils Class Usage Examples

Public Methods

Method Description
Flush ( ) : void
Seek ( long offset, System.IO origin ) : long
SetLength ( long value ) : void
Write ( byte buffer, int offset, int count ) : void
WriteByte ( byte value ) : void
close ( ) : void
read ( ) : int
read ( byte buffer ) : int
read ( byte buffer, int offset, int count ) : int
skip ( long len ) : long

Method Details

Flush() public method

public Flush ( ) : void
return void

Seek() public method

public Seek ( long offset, System.IO origin ) : long
offset long
origin System.IO
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

WriteByte() public method

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

close() public method

public close ( ) : void
return void

read() public method

public read ( ) : int
return int

read() public method

public read ( byte buffer ) : int
buffer byte
return int

read() public method

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

skip() public method

public skip ( long len ) : long
len long
return long