Class Signature
Class Signature
Navne til: Aspose.Pdf.Plugins Sammensætning: Aspose.PDF.dll (25.4.0)
Det repræsenterer Aspose.Pdf.Plugins.Signature plugin.
public sealed class Signature : IPlugin
Inheritance
Implements
De arvede medlemmer
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Eksemplet viser, hvordan man underskriver PDF-dokumentet.
// 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);
Constructors
Signature()
public Signature()
Methods
Process(IPluginoptioner)
Start Aspose.Pdf.Plugins.Signature behandling med de angivne parametre.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Et alternativ objekt, der indeholder instruktioner for Aspose.Pdf.Plugins.Signature.
Returns
En ResultContainer-objekt, der indeholder resultatet af operationen.