StreamSocketInformation.ServerIntermediateCertificates Property

Definition

Gets the intermediate certificates sent by the server during SSL negotiation when making an SSL connection with a StreamSocket.

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

Property Value

The set of certificates sent by the server during SSL negotiation.

Remarks

This property returns the intermediate server certificates used when making an SSL connection with a StreamSocket. 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 get 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 needs stronger security than the standard SSL negotiation.

Applies to

See also