Class Signature

Класс Подпись

Представляет плагин Signature.

public sealed class Signature : IPlugin

Конструкторы

ИмяОписание
Signature()Конструктор по умолчанию.

Методы

ИмяОписание
Process(IPluginOptions)Запускает обработку Signature с указанными параметрами.

Примеры

Пример демонстрирует, как подписать PDF документ.

// 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);

См. также