C# Class Sharpen.OutputStream

Inheritance: IDisposable
Show file Open project: nonorganic/dssnet Class Usage Examples

Protected Properties

Property Type Description
Wrapped Stream

Public Methods

Method Description
Close ( ) : void
Dispose ( ) : void
Flush ( ) : void
Write ( byte b ) : void
Write ( byte b, int offset, int len ) : void
Write ( int b ) : void

Private Methods

Method Description
GetWrappedStream ( ) : Stream
Wrap ( Stream s ) : OutputStream

Method Details

Close() public method

public Close ( ) : void
return void

Dispose() public method

public Dispose ( ) : void
return void

Flush() public method

public Flush ( ) : void
return void

Write() public method

public Write ( byte b ) : void
b byte
return void

Write() public method

public Write ( byte b, int offset, int len ) : void
b byte
offset int
len int
return void

Write() public method

public Write ( int b ) : void
b int
return void

Property Details

Wrapped protected property

protected Stream Wrapped
return Stream