Class
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:

cs-api-definition
public class TimeStampServer

Inheritance: objectTimeStampServer

Constructors

TimeStampServer(string, TimeSpan?)

Initializes a new instance of the TimeStampServer class with the specified URL and timeout.

Declaration

cs-api-definition
public TimeStampServer(string url, TimeSpan? timeout)

Parameters

url

string

The absolute URL of the timestamp authority (TSA) endpoint.

timeout

TimeSpan?

Optional request timeout. Specify null to use the default timeout behavior.

TimeStampServer(string, string, string, TimeSpan?)

Initializes a new instance of the TimeStampServer class with the specified URL, credentials, and timeout.

Declaration

cs-api-definition
public TimeStampServer(string url, string username, string password, TimeSpan? timeout)

Parameters

url

string

The absolute URL of the timestamp authority (TSA) endpoint.

username

string

The username for authenticating with the TSA, if required.

password

string

The password for authenticating with the TSA, if required.

timeout

TimeSpan?

Optional request timeout. Specify null to use the default timeout behavior.

Properties

Password

Gets the password used for TSA authentication, if credentials are required. May be null.

Declaration

cs-api-definition
public string Password { get; }

Property Value

string

TimeOut

Gets the optional timeout applied to timestamp requests. A null value indicates that the default timeout will be used.

Declaration

cs-api-definition
public TimeSpan? TimeOut { get; }

Property Value

TimeSpan?

URL

Gets the absolute URL of the timestamp authority (TSA) endpoint.

Declaration

cs-api-definition
public string URL { get; }

Property Value

string

Username

Gets the username used for TSA authentication, if credentials are required. May be null.

Declaration

cs-api-definition
public string Username { get; }

Property Value

string