Discuss this help topic in SecureBlackbox Forum

TElCookieDomain.Domain

TElCookieDomain     See also     


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


Contains the "domain" attribute of cookies, stored in this domain.

Declaration

[C#]
    string Domain;

[VB.NET]
    Property Domain As String

[Pascal]
    property Domain : string;

[C++]
    void get_Domain(std::string &OutResult);
    void set_Domain(const std::string &Value);

[PHP]
    string get_Domain()
    void set_Domain(string $Value)

[Java]
    String getDomain();
    void setDomain(String Value);

Description

    This property contains the host name for which the cookies stored in the CookieDomain object were set. The value of this property is used to speed up cookie search when the HTTP request is sent. Contained cookies have a separate Domain property, and that one is used when determining what cookies should be sent to the server.

See also:     CookieCount     Cookies    

Discuss this help topic in SecureBlackbox Forum