Class Signature

İmza sınıfı

Signature eklentisini temsil eder.

public sealed class Signature : IPlugin

Yapıcılar

AdAçıklama
Signature()Varsayılan yapıcı.

Metodlar

AdAçıklama
Process(IPluginOptions)Belirtilen parametrelerle Signature işlemini başlatır.

Örnekler

Örnek, PDF belgesini nasıl imzalayacağınızı gösterir.

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

Ayrıca Bakınız