Class Signature

Signature class

Represents Signature plugin.

public sealed class Signature : IPlugin

Constructors

NameDescription
Signature()The default constructor.

Methods

NameDescription
Process(IPluginOptions)Starts the Signature processing with the specified parameters.

Examples

The example demonstrates how to sign PDF document.

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

See Also