Web.HTTPApp.TCookie.Domain

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Domain: string read FDomain write FDomain;

C++

__property System::UnicodeString Domain = {read=FDomain, write=FDomain};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TCookie

Description

Specifies the Domain field of the cookie header.

Use Domain to limit the recipients of the cookie header to certain domains. The Web client will only send this cookie on to URIs in the specified domain. To limit the recipients to certain paths within the specified domain, use the Path property.

See Also