[]
Signs and saves the current document to a stream.
Note that stream
must support read and seek operations.
public void Sign(SignatureProperties signatureProperties, Stream stream)
Public Sub Sign(signatureProperties As SignatureProperties, stream As Stream)
Type | Name | Description |
---|---|---|
SignatureProperties | signatureProperties | Properties of the signature used to sign the document. |
Stream | stream | The output stream (must support read and seek operations). |
Signs and saves the current document to a file.
public void Sign(SignatureProperties signatureProperties, string fileName)
Public Sub Sign(signatureProperties As SignatureProperties, fileName As String)
Type | Name | Description |
---|---|---|
SignatureProperties | signatureProperties | Properties of the signature used to sign the document. |
string | fileName | The name of the PDF file to create. |
Signs and saves the current document to a stream.
Note that stream
must support read and seek operations.
public void Sign(SignatureProperties signatureProperties, Stream stream, SaveMode saveMode)
Public Sub Sign(signatureProperties As SignatureProperties, stream As Stream, saveMode As SaveMode)
Type | Name | Description |
---|---|---|
SignatureProperties | signatureProperties | Properties of the signature used to sign the document. |
Stream | stream | The output stream (must support read and seek operations). |
SaveMode | saveMode | The PDF saving mode. |
Signs and saves the current document to a file.
public void Sign(SignatureProperties signatureProperties, string fileName, SaveMode saveMode)
Public Sub Sign(signatureProperties As SignatureProperties, fileName As String, saveMode As SaveMode)
Type | Name | Description |
---|---|---|
SignatureProperties | signatureProperties | Properties of the signature used to sign the document. |
string | fileName | The name of the PDF file to create. |
SaveMode | saveMode | The PDF save mode. |
Signs and saves the current document to a stream.
Note that stream
must support read and seek operations.
public void Sign(SignatureProperties signatureProperties, Stream stream, SavePdfOptions saveOptions)
Public Sub Sign(signatureProperties As SignatureProperties, stream As Stream, saveOptions As SavePdfOptions)
Type | Name | Description |
---|---|---|
SignatureProperties | signatureProperties | Properties of the signature used to sign the document. |
Stream | stream | The output stream (must support read and seek operations). |
SavePdfOptions | saveOptions | The PDF save options. |
Signs and saves the current document to a file.
public void Sign(SignatureProperties signatureProperties, string fileName, SavePdfOptions saveOptions)
Public Sub Sign(signatureProperties As SignatureProperties, fileName As String, saveOptions As SavePdfOptions)
Type | Name | Description |
---|---|---|
SignatureProperties | signatureProperties | Properties of the signature used to sign the document. |
string | fileName | The name of the PDF file to create. |
SavePdfOptions | saveOptions | The PDF save options. |
Signs and saves the current document to a file.
Note that stream
must support read and seek operations.
public void Sign(SignatureProperties signatureProperties, Stream stream, bool incrementalUpdate)
Public Sub Sign(signatureProperties As SignatureProperties, stream As Stream, incrementalUpdate As Boolean)
Type | Name | Description |
---|---|---|
SignatureProperties | signatureProperties | Properties of the signature used to sign the document. |
Stream | stream | The output stream (must support read and seek operations). |
bool | incrementalUpdate | Indicates whether the document should be saved using incremental update. |
Signs and saves the current document to a stream.
public void Sign(SignatureProperties signatureProperties, string fileName, bool incrementalUpdate)
Public Sub Sign(signatureProperties As SignatureProperties, fileName As String, incrementalUpdate As Boolean)
Type | Name | Description |
---|---|---|
SignatureProperties | signatureProperties | Properties of the signature used to sign the document. |
string | fileName | The name of the PDF file to create. |
bool | incrementalUpdate | Indicates whether the document should be saved using incremental update. |