Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.ValidTo

TElX509Certificate     See also     


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


Contains the date when the certificate expires

Declaration

[C#]
    DateTime ValidTo;

[VB.NET]
    Property ValidTo As DateTime

[Pascal]
    property ValidTo : TDateTime;

[C++]
    int64_t get_ValidTo();
    void set_ValidTo(int64_t Value);

[PHP]
    DateTime get_ValidTo()
    void set_ValidTo(DateTime $Value)

[Java]
    Date getValidTo();
    void setValidTo(Date Value);

Description

    Use this function to get the date on which the certificate becomes invalid (expires). The date and time are stored and retrieved in Universal Coordinate Time (UTC).
     [Pascal] The date is represented in DATE (OLE_DATE) format, which is double that contains the number of days since 30 Dec 1899 in its integer part and time of day in milliseconds in fractional part.
     [.NET] The date is represented as System.DateTime structure

See also:     ValidFrom    

Discuss this help topic in SecureBlackbox Forum