Send feedback on this topic.
Teradata.Client.Provider
SslCRCTimeout Property



Teradata.Client.Provider Namespace > TdConnectionStringBuilder Class : SslCRCTimeout Property
Sets the maximum amount of time to be spent during the retrieval of OCSP response or certificate revocation list (CRL). A value of zero means no limits.
Syntax
'Declaration
 
Public Property SslCRCTimeout As Integer
'Usage
 
Dim instance As TdConnectionStringBuilder
Dim value As Integer
 
instance.SslCRCTimeout = value
 
value = instance.SslCRCTimeout
public int SslCRCTimeout {get; set;}
public:
property int SslCRCTimeout {
   int get();
   void set (    int value);
}
Remarks

The maximum amount of time taken by the certificate revocation checks in case of slow or unresponsive OCSP or CRL services will depend on the number of certificates that need to be checked and the number of certificate revocation check protocols supported by each certificate.

For example, if (1) the certificate chain contains a leaf certificate, an intermediate CA certificate, and a root CA certificate, (2) the leaf and intermediate both support OCSP and CRL, and (3) the OCSP and CRL services for both certificates do not respond within the specified time, then the total maximum time taken will be SslCRCTimeout * 4 (two OCSP responses plus two CRLs).

NOTE: This setting is ignored when SslMode is not Verify-Full.

Requirements
ProductVersionsPlatforms
.NET6, 7Windows, Linux, MacOS
.NET Framework4.6.2, 4.7, 4.7.1, 4.7.2, 4.8Windows
.NET Standard2.0Windows, Linux, MacOS
See Also

Reference

TdConnectionStringBuilder Class
TdConnectionStringBuilder Members