Class Signature

Signature-Klasse

Stellt das Signature-Plugin dar.

public sealed class Signature : IPlugin

Konstruktoren

NameBeschreibung
Signature()Der Standardkonstruktor.

Methoden

NameBeschreibung
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