C# Class iTextSharp.xmp.impl.CountOutputStream

An OutputStream that counts the written bytes. @since 08.11.2006
Inheritance: Stream
Afficher le fichier Open project: nonorganic/dssnet Class Usage Examples

Méthodes publiques

Méthode 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

Méthode Description
CountOutputStream ( Stream outp ) : System

Constructor with providing the output stream to decorate.

Method Details

Flush() public méthode

public Flush ( ) : void
Résultat void

Read() public méthode

public Read ( byte buffer, int offset, int count ) : int
buffer byte
offset int
count int
Résultat int

Seek() public méthode

public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
Résultat long

SetLength() public méthode

public SetLength ( long value ) : void
value long
Résultat void

Write() public méthode

Counts the written bytes.
public Write ( byte buf ) : void
buf byte
Résultat void

Write() public méthode

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

Write() public méthode

Counts the written bytes.
public Write ( int b ) : void
b int
Résultat void