Class Signature

Class Signature

Nama dari : Aspose.Pdf.Plugins Pengumpulan: Aspose.PDF.dll (25.5.0)

Menampilkan Aspose.Pdf.Plugins.Signature plugin.

public sealed class Signature : IPlugin

Inheritance

object Signature

Implements

IPlugin

anggota yang diwarisi

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

Examples

Contohnya menunjukkan cara menandatangani dokumen 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);

Constructors

Signature()

public Signature()

Methods

Process(Pilihan IPlugin)

Memulai pemrosesan Aspose.Pdf.Plugins.Signature dengan parameter yang ditentukan.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Sebuah opsi objek yang berisi instruksi untuk Aspose.Pdf.Plugins.Signature.

Returns

ResultContainer

Sebuah objek ResultContainer yang mencakup hasil operasi.

Exceptions

InvalidOperationException

 Indonesia