Class Signature

Class Signature

De naam: Aspose.Pdf.Plugins Verzameling: Aspose.PDF.dll (25.4.0)

Vertegenwoordigt Aspose.Pdf.Plugins.Signature plugin.

public sealed class Signature : IPlugin

Inheritance

object Signature

Implements

IPlugin

Geëerbiede leden

object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

Het voorbeeld laat zien hoe u een PDF-document kunt ondertekenen.

// 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(IPluginopties)

Begint de Aspose.Pdf.Plugins.Signature verwerking met de aangegeven parameters.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Een optie object met instructies voor de Aspose.Pdf.Plugins.Signature.

Returns

ResultContainer

Een ResultContainer object met het resultaat van de operatie.

Exceptions

InvalidOperationException

 Nederlands