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

另请参见