ServicePoint::ClientCertificate Property
.NET Framework (current version)
Gets the last client certificate sent to the server.
Assembly: System (in System.dll)
Property Value
Type: System.Security.Cryptography.X509Certificates::X509Certificate^An X509Certificate object that contains the public values of the last client certificate sent to the server.
The following code example displays the value of this property.
if ( sp->Certificate == nullptr ) Console::WriteLine( "Certificate = (null)" ); else Console::WriteLine( "Certificate = {0}", sp->Certificate ); if ( sp->ClientCertificate == nullptr ) Console::WriteLine( "Client Certificate = (null)" ); else Console::WriteLine( "Client Certificate = {0}", sp->ClientCertificate ); Console::WriteLine( "ProtocolVersion = {0}", sp->ProtocolVersion->ToString() ); Console::WriteLine( "SupportsPipelining = {0}", sp->SupportsPipelining );
.NET Framework
Available since 1.1
Available since 1.1
Show: