Web.HTTPApp.TCookie.HeaderValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property HeaderValue: string read GetHeaderValue;

C++

__property System::UnicodeString HeaderValue = {read=GetHeaderValue};

Properties

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

Description

Specifies the Cookie header string that represents this TCookie object.

Read HeaderValue to determine the Cookie header that is added to the HTTP response message for this TCookie object. HeaderValue combines the information specified by the Name and Value properties into a single Name=Value field, and then adds the Domain, Path, Expires, and Secure fields based on the values of the properties with the corresponding names.

See Also