Discuss this help topic in SecureBlackbox Forum

TElCookie.Persistent

TElCookie     See also     


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


Specifies if the cookie should be stored in cookie storage after the session is over.

Declaration

[C#]
    bool Persistent;

[VB.NET]
    Property Persistent As Boolean

[Pascal]
    property Persistent : boolean;

[C++]
    bool get_Persistent();
    void set_Persistent(bool Value);

[PHP]
    bool get_Persistent()
    void set_Persistent(bool $Value)

[Java]
    boolean getPersistent();
    void setPersistent(boolean Value);

Description

    This property specifies if the cookie is persistent, i.e. should be saved in cookie storage and survive application restart. When saving a cookie in custom storage, you need to also check the value of Expires and skip expired cookies.

See also:     Expires     Included    

Discuss this help topic in SecureBlackbox Forum