Discuss this help topic in SecureBlackbox Forum

TElCookie.HostOnly

TElCookie     See also     


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


Specifies if the cookie is valid only for domain or for its subdomains.

Declaration

[C#]
    bool HostOnly;

[VB.NET]
    Property HostOnly As Boolean

[Pascal]
    property HostOnly : boolean;

[C++]
    bool get_HostOnly();
    void set_HostOnly(bool Value);

[PHP]
    bool get_HostOnly()
    void set_HostOnly(bool $Value)

[Java]
    boolean getHostOnly();
    void setHostOnly(boolean Value);

Description

    This property specifies if domain matching is exact (i.e. request domain is compared to the value of Domain property) or subdomain-based (request domain should be a subdomain of the value contained in Domain property).

See also:     Domain     Included    

Discuss this help topic in SecureBlackbox Forum