ServicePoint.ClientCertificate Egenskap

Definition

Hämtar det sista klientcertifikatet som skickades till servern.

public:
 property System::Security::Cryptography::X509Certificates::X509Certificate ^ ClientCertificate { System::Security::Cryptography::X509Certificates::X509Certificate ^ get(); };
public System.Security.Cryptography.X509Certificates.X509Certificate ClientCertificate { get; }
member this.ClientCertificate : System.Security.Cryptography.X509Certificates.X509Certificate
Public ReadOnly Property ClientCertificate As X509Certificate

Egenskapsvärde

Ett X509Certificate objekt som innehåller de offentliga värdena för det senaste klientcertifikatet som skickades till servern.

Exempel

I följande kodexempel visas värdet för den här egenskapen.

if (sp.Certificate == null)
    Console.WriteLine("Certificate = (null)");
else
    Console.WriteLine("Certificate = " + sp.Certificate.ToString());

if (sp.ClientCertificate == null)
    Console.WriteLine("ClientCertificate = (null)");
else
    Console. WriteLine("ClientCertificate = " + sp.ClientCertificate.ToString());

Console.WriteLine("ProtocolVersion = " + sp.ProtocolVersion.ToString());
Console.WriteLine("SupportsPipelining = " + sp.SupportsPipelining);
If sp.Certificate Is Nothing Then
    Console.WriteLine("Certificate = (null)")
Else
    Console.WriteLine(("Certificate = " + sp.Certificate.ToString()))
End If

If sp.ClientCertificate Is Nothing Then
    Console.WriteLine("ClientCertificate = (null)")
Else
    Console.WriteLine(("ClientCertificate = " + sp.ClientCertificate.ToString()))
End If

Console.WriteLine("ProtocolVersion = " + sp.ProtocolVersion.ToString())
Console.WriteLine(("SupportsPipelining = " + sp.SupportsPipelining.ToString()))

Kommentarer

Note

Den här egenskapen implementeras endast på .NET Framework.

Gäller för