ServicePoint::Certificate Property
.NET Framework (current version)
Gets the certificate received for this ServicePoint object.
Assembly: System (in System.dll)
Property Value
Type: System.Security.Cryptography.X509Certificates::X509Certificate^An instance of the X509Certificate class that contains the security certificate received for this ServicePoint object.
Although a ServicePoint object can make multiple connections to an Internet resource, it can maintain only one certificate.
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: