PdfRpt.FluentInterface.SignedFileBuilder.WithTsaClient C# (CSharp) Method

WithTsaClient() public method

Timestamp Authority Client's info. It can be null.
public WithTsaClient ( string url, string userName, string password ) : void
url string URL of the Time Stamp Authority
userName string TSA Username
password string TSA password
return void
        public void WithTsaClient(string url, string userName, string password)
        {
            _digitalSignature.TsaClient = new TsaClient
            {
                Password = password,
                UserName = userName,
                Url = url
            };
        }