クラスシグネチャ

情報

Documentize.Signatureプラグインを表します。

public sealed class Signature  

継承

object
Signature

継承したメンバー

この例は、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)

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

public ResultContainer Process(IPluginOptions options)  

パラメーター

  • options IPluginOptions: Documentize.Signatureの指示を含むオプションオブジェクトです。

戻り値

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

例外

InvalidOperationException

名前空間: Documentize
アセンブリ: Documentize.dll

 日本語