Marca de tiempo de clase

Información

Representa el plugin Documentize.Timestamp.

public class Timestamp

Herencia

objectTimestamp

Miembros heredados

Ejemplos

El ejemplo demuestra cómo agregar una marca de tiempo al documento.

// crear marca de tiempo
var plugin = new Timestamp();
// crear objeto AddTimestampOptions para establecer instrucciones
var opt = new AddTimestampOptions("path_to_pfx", "password_for_pfx", "timestamp_server_url");
// agregar ruta del archivo de entrada
opt.AddInput(new FileDataSource("path_to_pdf"));
// establecer ruta del archivo de salida
opt.AddOutput(new FileDataSource("path_to_result_pdf"));
// realizar el proceso
plugin.Process(opt);

Constructores

Timestamp()

public Timestamp()

Métodos

Process(AddTimestampOptions)

Inicia el procesamiento de Documentize.Timestamp con los parámetros especificados.

public ResultContainer Process(AddTimestampOptions options)

Parámetros

  • options AddTimestampOptions: Un objeto de opciones que contiene instrucciones para Documentize.AddTimestampOptions.

Devuelve

ResultContainer : Un objeto ResultContainer que contiene el resultado de la operación.

Namespace: Documentize Assembly: Documentize.dll

 Español