Class Timestamp
Info
Represents Documentize.Timestamp plugin. Used to add Timestamp to a document.
public static 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 the document.
// Create AddTimestampOptions object to set instructions
var options = new AddTimestampOptions("path_to_your_pfx_file.pfx", "password_for_your_pfx_file", "timestamp_server_url");
// Add input file path
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// Set output file path
options.AddOutput(new FileDataSource("path_to_result_pdf_file.pdf"));
// Perform the process
Timestamp.Process(options);
Methods
Process(AddTimestampOptions)
Starts the Documentize.Timestamp processing with the specified parameters.
public static ResultContainer Process(AddTimestampOptions options)
Parameters
options
AddTimestampOptions: An options object containing instructions for the operation.
Returns
ResultContainer : An object containing the result of the operation.
Namespace: Documentize Assembly: Documentize.dll