iText 9.1.0 API
|
An OutputStream
that counts the written bytes. More...
Public Member Functions |
|
CountOutputStream (Stream outputStream) | |
Creates an instance of output stream which counts written bytes. More... |
|
void | Write (byte[] b) |
override long | Seek (long offset, SeekOrigin origin) |
override void | SetLength (long value) |
override int | Read (byte[] buffer, int offset, int count) |
override void | Write (byte[] b, int off, int len) |
void | Write (int b) |
override void | Flush () |
override void | Close () |
virtual long | GetAmountOfWrittenBytes () |
Gets amount of bytes written to the inner output stream. More... |
|
Properties |
|
override bool | CanRead [get] |
override bool | CanSeek [get] |
override bool | CanWrite [get] |
override long | Length [get] |
override long | Position [get, set] |
An OutputStream
that counts the written bytes.
An OutputStream
that counts the written bytes. You should not use same instance of this class in different threads as far as it's not thread safe.
|
inline |
Creates an instance of output stream which counts written bytes.
outputStream | inner System.IO.Stream |
|
inline |
|
inline |
|
inlinevirtual |
Gets amount of bytes written to the inner output stream.
|
inline |
|
inline |
|
inline |