TimeStampServer
Represents a Time Stamp Protocol (TSP) server configuration used when requesting trusted RFC 3161 time-stamps for digital signatures.
Definition
Namespace:Telerik.Documents.Fixed.Model.DigitalSignatures
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public class TimeStampServer
Inheritance: objectTimeStampServer
Constructors
Initializes a new instance of the TimeStampServer class with the specified URL, credentials, and timeout.
public TimeStampServer(string url, string username, string password, TimeSpan? timeout)
The absolute URL of the timestamp authority (TSA) endpoint.
usernamestringThe username for authenticating with the TSA, if required.
passwordstringThe password for authenticating with the TSA, if required.
timeoutTimeSpan?Optional request timeout. Specify null to use the default timeout behavior.
Initializes a new instance of the TimeStampServer class with the specified URL and timeout.
Properties
Gets the password used for TSA authentication, if credentials are required. May be null.
public string Password { get; }
Gets the optional timeout applied to timestamp requests. A null value indicates
that the default timeout will be used.
public TimeSpan? TimeOut { get; }
Gets the absolute URL of the timestamp authority (TSA) endpoint.
public string URL { get; }