Discuss this help topic in SecureBlackbox Forum

TElCMSCRLValidatedID.CRLMatches

TElCMSCRLValidatedID     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This method matches given CRL to its identifier.

Declaration

[C#]
    bool CRLMatches(TElCertificateRevocationList CRL);

[VB.NET]
    Function CRLMatches(ByVal CRL As TElCertificateRevocationList) As Boolean

[Pascal]
    function CRLMatches(CRL: TElCertificateRevocationList) : boolean;

[C++]
    bool CRLMatches(TElCertificateRevocationList &CRL);
    bool CRLMatches(TElCertificateRevocationList *CRL);

[PHP]
    bool CRLMatches(TElCertificateRevocationList $CRL)

[Java]
    boolean crlMatches(TElCertificateRevocationList CRL);

Parameters

  • CRL - CRL to be matched to the identifier

Return value

    Returns True if the CRL identifier corresponds to the given CRL, and False otherwise.

Description

    Use this method to check whether a CRL corresponds to the CRL identifier.

Discuss this help topic in SecureBlackbox Forum