Class Signature
Class Signature
Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll
Aspose.Pdf.Plugins.Signature プラグインを表します。
public sealed class Signature : 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 オブジェクト。