Class Timestamp

Information

Représente le plugin Documentize.Timestamp.

public class Timestamp

Héritage

objectTimestamp

Membres hérités

Exemples

L’exemple démontre comment ajouter Timestamp au document.

// create Timestamp
var plugin = new Timestamp();
// create AddTimestampOptions object to set instructions
var opt = new AddTimestampOptions("path_to_pfx", "password_for_pfx", "timestamp_server_url");
// add input file path
opt.AddInput(new FileDataSource("path_to_pdf"));
// set output file path
opt.AddOutput(new FileDataSource("path_to_result_pdf"));
// perform the process
plugin.Process(opt);

Constructeurs

Timestamp()

public Timestamp()

Méthodes

Process(AddTimestampOptions)

Démarre le traitement Documentize.Timestamp avec les paramètres spécifiés.

public ResultContainer Process(AddTimestampOptions options)

Paramètres

  • options AddTimestampOptions : Un objet d’options contenant des instructions pour Documentize.AddTimestampOptions.

Retourne

ResultContainer : Un objet ResultContainer contenant le résultat de l’opération.

Namespace : Documentize Assembly : Documentize.dll

 Français