C# Class iTextSharp.xmp.impl.CountOutputStream

An OutputStream that counts the written bytes. @since 08.11.2006
Inheritance: Stream
ファイルを表示 Open project: nonorganic/dssnet Class Usage Examples

Public Methods

Method Description
Flush ( ) : void
Read ( byte buffer, int offset, int count ) : int
Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long value ) : void
Write ( byte buf ) : void

Counts the written bytes.

Write ( byte buf, int off, int len ) : void

Counts the written bytes.

Write ( int b ) : void

Counts the written bytes.

Private Methods

Method Description
CountOutputStream ( Stream outp ) : System

Constructor with providing the output stream to decorate.

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

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

Counts the written bytes.
public Write ( byte buf ) : void
buf byte
return void

Write() public method

Counts the written bytes.
public Write ( byte buf, int off, int len ) : void
buf byte
off int
len int
return void

Write() public method

Counts the written bytes.
public Write ( int b ) : void
b int
return void