OutputStreamEncryption Public class
Diagram
flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph iTextSharp.text.pdf iTextSharp.text.pdf.OutputStreamEncryption[[OutputStreamEncryption]] end subgraph System.IO System.IO.Stream[[Stream]] end System.IO.Stream --> iTextSharp.text.pdf.OutputStreamEncryption
Members
Properties
Public properties
Methods
Public methods
Details
Inheritance
-
Stream
Constructors
OutputStreamEncryption [1/2]
Source code
public OutputStreamEncryption(Stream outc, byte[] key, int off, int len, int revision)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
outc |
|
|
|
key |
|
|
|
off |
|
|
|
len |
|
|
|
revision |
OutputStreamEncryption [2/2]
Source code
public OutputStreamEncryption(Stream outc, byte[] key, int revision)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
outc |
|
|
|
key |
|
|
|
revision |
Methods
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[] b, int off, int len)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
b |
|
|
|
off |
|
|
|
len |
Close
Source code
public override void Close()
WriteByte
Source code
public override void WriteByte(byte value)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
value |
Finish
Source code
public virtual void Finish()
Properties
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