OutputStreamCounter Public class
Diagram
flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph iTextSharp.text.pdf iTextSharp.text.pdf.OutputStreamCounter[[OutputStreamCounter]] end subgraph System.IO System.IO.Stream[[Stream]] end System.IO.Stream --> iTextSharp.text.pdf.OutputStreamCounter
Members
Properties
Public properties
Methods
Public methods
Details
Inheritance
-
Stream
Constructors
OutputStreamCounter
Source code
public OutputStreamCounter(Stream _outc)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
_outc |
Methods
ResetCounter
Source code
public virtual void ResetCounter()
Flush
Source code
public override void Flush()
Read
Source code
public override int Read(byte[] buffer, int offset, int count)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
buffer |
|
|
|
offset |
|
|
|
count |
Seek
Source code
public override long Seek(long offset, SeekOrigin origin)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
offset |
|
|
|
origin |
SetLength
Source code
public override void SetLength(long value)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
value |
Write
Source code
public override void Write(byte[] buffer, int offset, int count)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
buffer |
|
|
|
offset |
|
|
|
count |
Close
Source code
public override void Close()
Properties
Counter
public virtual long Counter { get; }
CanRead
public override bool CanRead { get; }
CanSeek
public override bool CanSeek { get; }
CanWrite
public override bool CanWrite { get; }
Length
public override long Length { get; }
Position
public override long Position { get; set; }
Generated with ModularDoc