C# Class SharpCifs.Util.Sharpen.InputStream

Inheritance: IDisposable
Show file Open project: brandonprry/Potato Class Usage Examples

Protected Properties

Property Type Description
BaseStream Stream
Wrapped Stream

Private Properties

Property Type Description
CanSeek bool
GetWrappedStream Stream
Wrap InputStream

Public Methods

Method Description
Available ( ) : int
Close ( ) : void
Dispose ( ) : void
Mark ( int readlimit ) : void
MarkSupported ( ) : bool
Read ( ) : int
Read ( byte buf ) : int
Read ( byte b, int off, int len ) : int
Reset ( ) : void
Skip ( long cnt ) : long

Private Methods

Method Description
CanSeek ( ) : bool
GetWrappedStream ( ) : Stream
Wrap ( Stream s ) : InputStream

Method Details

Available() public method

public Available ( ) : int
return int

Close() public method

public Close ( ) : void
return void

Dispose() public method

public Dispose ( ) : void
return void

Mark() public method

public Mark ( int readlimit ) : void
readlimit int
return void

MarkSupported() public method

public MarkSupported ( ) : bool
return bool

Read() public method

public Read ( ) : int
return int

Read() public method

public Read ( byte buf ) : int
buf byte
return int

Read() public method

public Read ( byte b, int off, int len ) : int
b byte
off int
len int
return int

Reset() public method

public Reset ( ) : void
return void

Skip() public method

public Skip ( long cnt ) : long
cnt long
return long

Property Details

BaseStream protected property

protected Stream BaseStream
return Stream

Wrapped protected property

protected Stream Wrapped
return Stream