Click or drag to resize

RequestConfigurationClientCertificates Property

The X509CertificateCollection that contains the security certificates associated with this request.

Namespace: Downloader
Assembly: NeoAxis.Core.Editor (in NeoAxis.Core.Editor.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public X509CertificateCollection ClientCertificates { get; set; }

Property Value

X509CertificateCollection
Exceptions
ExceptionCondition
ArgumentNullExceptionThe value specified for a set operation is null.
Remarks
The Framework caches SSL sessions as they are created and attempts to reuse a cached session for a new request, if possible. When attempting to reuse an SSL session, the Framework uses the first element of ClientCertificates (if there is one), or tries to reuse an anonymous sessions if ClientCertificates is empty. For performance reasons, you shouldn't add a client certificate to a HttpWebRequest unless you know the server will ask for it.
See Also