Discuss this help topic in SecureBlackbox Forum

TElCertificateRevocationList.NextUpdate

TElCertificateRevocationList     See also     


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


This property contains the date by which the next CRL will be issued.

Declaration

[C#]
    DateTime NextUpdate;

[VB.NET]
    Property NextUpdate As DateTime

[Pascal]
    property NextUpdate : TDateTime;

[C++]
    int64_t get_NextUpdate();
    void set_NextUpdate(int64_t Value);

[PHP]
    DateTime get_NextUpdate()
    void set_NextUpdate(DateTime $Value)

[Java]
    Date getNextUpdate();
    void setNextUpdate(Date Value);

Description

    Use this property to get/set date by which the next CRL will be issued. Next CRL version can be issued earlier than value of the NextUpdate property but not later.
    The following paragraph is taken from RFC 2459 (Housley, et. al.), part 5.1.2.5:

    « This field indicates the date by which the next CRL will be issued. The next CRL could be issued before the indicated date, but it will not be issued any later than the indicated date. CAs SHOULD issue CRLs with a nextUpdate time equal to or later than all previous CRLs.»

See also:     ThisUpdate    

Discuss this help topic in SecureBlackbox Forum