Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.ClearOutdatedCacheRecords

TElX509CertificateValidator     See also     


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


Clears validation cache.

Declaration

[C#]
    static void ClearOutdatedCacheRecords(DateTime ClearMoment, int CacheValidityTime);

[VB.NET]
    Shared Sub ClearOutdatedCacheRecords(ByVal ClearMoment As DateTime, ByVal CacheValidityTime As Integer)

[Pascal]
    class procedure ClearOutdatedCacheRecords(ClearMoment: DateTime; CacheValidityTime: integer);

[C++]
    static void ClearOutdatedCacheRecords(int64_t ClearMoment, int32_t CacheValidityTime);

[PHP]
    void ClearOutdatedCacheRecords(DateTime $ClearMoment, integer $CacheValidityTime)

[Java]
    static void clearOutdatedCacheRecords(Date ClearMoment, int CacheValidityTime);

Parameters

  • ClearMoment - the records with validity periods, that have expired before ClearMoment, will be removed.
  • CacheValidityTime - cache validity time in milliseconds. After this time the validation record is considered as outdated.

Description

    This method clears all cached validation results which validity period (specified by CacheValidityTime) has expired before the time specified by ClearMoment.

See also:     CacheValidationResults    

Discuss this help topic in SecureBlackbox Forum