Analog of FilterOutputStream. More...
|
| |
FilterOutputStream (Stream @out) |
| |
Creates a FilterOutputStream on top of the specified output stream. More...
|
| |
| virtual void |
Write (int value) |
| |
Writes the specified int value to output stream. More...
|
| |
| void |
Write (byte[] buffer) |
| |
Writes buffer.Length bytes to output stream. More...
|
| |
| override void |
Write (byte[] b, int off, int len) |
| |
Writes len bytes from the specified byte array starting at offset off to output stream. More...
|
| |
| override void |
Flush () |
| |
Flushes output stream. More...
|
| |
| override void |
SetLength (long value) |
| |
| override int |
Read (byte[] buffer, int offset, int count) |
| |
| override long |
Seek (long offset, SeekOrigin origin) |
| |
|
| override void |
Dispose (bool disposing) |
| |
|
| Stream |
out |
| |
The output stream to be filtered. More...
|
| |
|
| override bool |
CanRead [get] |
| |
| override bool |
CanSeek [get] |
| |
| override bool |
CanWrite [get] |
| |
| override long |
Length [get] |
| |
| override long |
Position [get, set] |
| |
◆ FilterOutputStream()
| iText.Commons.Utils.FilterOutputStream.FilterOutputStream |
( |
Stream @ |
out |
) |
|
|
inline |
Creates a FilterOutputStream on top of the specified output stream.
-
Parameters
-
| out |
The output stream to be assigned |
◆ Flush()
| override void iText.Commons.Utils.FilterOutputStream.Flush |
( |
|
) |
|
|
inline |
◆ Write() [1/3]
| override void iText.Commons.Utils.FilterOutputStream.Write |
( |
byte[] |
b, |
|
|
int |
off, |
|
|
int |
len |
|
) |
|
|
|
inline |
Writes len bytes from the specified byte array starting at offset off to output stream.
◆ Write() [2/3]
| void iText.Commons.Utils.FilterOutputStream.Write |
( |
byte[] |
buffer |
) |
|
|
inline |
Writes buffer.Length bytes to output stream.
◆ Write() [3/3]
| virtual void iText.Commons.Utils.FilterOutputStream.Write |
( |
int |
value |
) |
|
|
inlinevirtual |
◆ out
| Stream iText.Commons.Utils.FilterOutputStream.out |
|
protected |
The output stream to be filtered.