HttpTransportInformation.ServerIntermediateCertificates Property

Definition

Gets the intermediate certificates sent by the server during SSL negotiation on this HttpTransportInformation object.

public:
 property IVectorView<Certificate ^> ^ ServerIntermediateCertificates { IVectorView<Certificate ^> ^ get(); };
IVectorView<Certificate> ServerIntermediateCertificates();
public IReadOnlyList<Certificate> ServerIntermediateCertificates { get; }
var iVectorView = httpTransportInformation.serverIntermediateCertificates;
Public ReadOnly Property ServerIntermediateCertificates As IReadOnlyList(Of Certificate)

Property Value

The set of certificates sent by the server during SSL negotiation on this HttpTransportInformation object.

Remarks

This property returns the intermediate server certificates used for an SSL connection. These certificates are provided by the server during the SSL connection negotiation. The properties on the Certificate objects in the returned vector can be used to determine detailed information on the certificates.

This property can also be used to enforce stronger security than the default connection using the Certificate objects returned. The BuildChainAsync methods and other properties on the Certificate objects and methods on the CertificateChain object can be used when an app requires stronger security than the standard SSL negotiation.

Applies to

See also