Discuss this help topic in SecureBlackbox Forum

TElCookie.Domain

TElCookie     See also     


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


Contains the "domain" attribute of the cookie.

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 domain attribute of the cookie. If the cookie received from the server didn't include domain name, HostOnly property is set to true and this property contains the address that the client connected to.

See also:     HostOnly     Included     Path     Port    

Discuss this help topic in SecureBlackbox Forum