Class Timestamp
Info
Represents Documentize.Timestamp plugin.
public class Timestamp
Inheritance
Inherited Members
- object.GetType(),
- object.MemberwiseClone(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Examples
The example demonstrates how to add Timestamp to 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);
Constructors
Timestamp()
public Timestamp()
Methods
Process(AddTimestampOptions)
Starts the Documentize.Timestamp processing with the specified parameters.
public ResultContainer Process(AddTimestampOptions options)
Parameters
options
AddTimestampOptions: An options object containg instructions for the Documentize.AddTimestampOptions.
Returns
ResultContainer : An ResultContainer object containg the result of the operation.
Namespace: Documentize Assembly: Documentize.dll