Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.ResetCertificateCache

TElX509CertificateValidator     


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


Clears the cache of already validated certificates.

Declaration

[C#]
    static void ResetCertificateCache();

[VB.NET]
    Shared Sub ResetCertificateCache()

[Pascal]
    class procedure ResetCertificateCache;

[C++]
    static void ResetCertificateCache();

[PHP]
    void ResetCertificateCache()

[Java]
    static void resetCertificateCache();

Description

     When the certificates are validated, they are also added to the cache which is used to save the component from validating the same certificate chains again while the process is active. Using ResetCertificateCache method you can remove all certificates from the cache and on the next validation all certificates will be validated again. It makes sense to use this method periodically if you have a long-running process (a service or constantly operating application).

Discuss this help topic in SecureBlackbox Forum