HttpListenerRequest.GetClientCertificate Method

Definition

Retrieves the client's X.509 v.3 certificate.

public:
 System::Security::Cryptography::X509Certificates::X509Certificate2 ^ GetClientCertificate();
public System.Security.Cryptography.X509Certificates.X509Certificate2? GetClientCertificate ();
public System.Security.Cryptography.X509Certificates.X509Certificate2 GetClientCertificate ();
member this.GetClientCertificate : unit -> System.Security.Cryptography.X509Certificates.X509Certificate2
Public Function GetClientCertificate () As X509Certificate2

Returns

A System.Security.Cryptography.X509Certificates object that contains the client's X.509 v.3 certificate.

Exceptions

A call to this method to retrieve the client's X.509 v.3 certificate is in progress and therefore another call to this method cannot be made.

Remarks

This method blocks until the certificate is retrieved.

Applies to

See also