Class Signature
Signature-Klasse
Stellt das Signature
-Plugin dar.
public sealed class Signature : IPlugin
Konstruktoren
Name | Beschreibung |
---|---|
Signature() | Der Standardkonstruktor. |
Methoden
Name | Beschreibung |
---|---|
Process(IPluginOptions) | Startet die Signature -Verarbeitung mit den angegebenen Parametern. |
Beispiele
Das Beispiel zeigt, wie man ein PDF-Dokument signiert.
// create Signature
var plugin = new Signature();
// create SignOptions object to set instructions
var opt = new SignOptions(inputPfx, inputPfxPassword);
// add input file path
opt.AddInput(new FileDataSource(inputPath));
// set output file path
opt.AddOutput(new FileDataSource(outputPath));
// perform the process
plugin.Process(opt);
Siehe auch
- Schnittstelle IPlugin
- Namespace Aspose.Pdf.Plugins
- Assembly Aspose.PDF