XpsDigitalSignature.VerifyCertificate Méthode

Définition

Vérifie un certificat X.509.

Surcharges

VerifyCertificate()

Vérifie le certificat X.509 incorporé dans le package.

VerifyCertificate(X509Certificate)

Vérifie le certificat X.509 spécifié.

VerifyCertificate()

Vérifie le certificat X.509 incorporé dans le package.

public:
 System::Security::Cryptography::X509Certificates::X509ChainStatusFlags VerifyCertificate();
[System.Security.SecurityCritical]
public System.Security.Cryptography.X509Certificates.X509ChainStatusFlags VerifyCertificate ();
public System.Security.Cryptography.X509Certificates.X509ChainStatusFlags VerifyCertificate ();
[<System.Security.SecurityCritical>]
member this.VerifyCertificate : unit -> System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
member this.VerifyCertificate : unit -> System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
Public Function VerifyCertificate () As X509ChainStatusFlags

Retours

X509ChainStatusFlags

Combinaison de bits des valeurs d’énumération qui spécifient le résultat de la tentative de vérification.

Attributs

Remarques

Votre application doit décider quels indicateurs sont essentiels pour la vérification des certificats.

Certaines vérifications de certificat peuvent nécessiter une connectivité Internet.

Le certificat X.509 du signataire est incorporé par la SignDigitally méthode lorsqu’il est appelé avec le embedCertificate paramètre défini sur true.

Voir aussi

S’applique à

VerifyCertificate(X509Certificate)

Vérifie le certificat X.509 spécifié.

public:
 static System::Security::Cryptography::X509Certificates::X509ChainStatusFlags VerifyCertificate(System::Security::Cryptography::X509Certificates::X509Certificate ^ certificate);
[System.Security.SecurityCritical]
public static System.Security.Cryptography.X509Certificates.X509ChainStatusFlags VerifyCertificate (System.Security.Cryptography.X509Certificates.X509Certificate certificate);
public static System.Security.Cryptography.X509Certificates.X509ChainStatusFlags VerifyCertificate (System.Security.Cryptography.X509Certificates.X509Certificate certificate);
[<System.Security.SecurityCritical>]
static member VerifyCertificate : System.Security.Cryptography.X509Certificates.X509Certificate -> System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
static member VerifyCertificate : System.Security.Cryptography.X509Certificates.X509Certificate -> System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
Public Shared Function VerifyCertificate (certificate As X509Certificate) As X509ChainStatusFlags

Paramètres

certificate
X509Certificate

Certificat d’authenticité.

Retours

X509ChainStatusFlags

Combinaison de bits des valeurs d’énumération qui spécifient le résultat de la tentative de vérification.

Attributs

Remarques

Votre application doit décider quels indicateurs sont essentiels pour la vérification des certificats.

Certaines vérifications de certificat peuvent nécessiter une connectivité Internet.

Voir aussi

S’applique à