Class Signature

Class Signature

Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll

Aspose.Pdf.Plugins.Signature プラグインを表します。

public sealed class Signature : IPlugin

継承

objectSignature

実装

IPlugin

継承されたメンバー

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

この例では、PDF ドキュメントに署名する方法を示します。

// Signature を作成
var plugin = new Signature();
// 指示を設定するための SignOptions オブジェクトを作成
var opt = new SignOptions(inputPfx, inputPfxPassword);
// 入力ファイルパスを追加
opt.AddInput(new FileDataSource(inputPath));
// 出力ファイルパスを設定
opt.AddOutput(new FileDataSource(outputPath));
// 処理を実行
plugin.Process(opt);

コンストラクター

Signature()

public Signature()

メソッド

Process(IPluginOptions)

指定されたパラメーターで Aspose.Pdf.Plugins.Signature の処理を開始します。

public ResultContainer Process(IPluginOptions options)

パラメーター

options IPluginOptions

Aspose.Pdf.Plugins.Signature の指示を含むオプションオブジェクト。

戻り値

ResultContainer

操作の結果を含む ResultContainer オブジェクト。

例外

InvalidOperationException

 日本語