Web.HTTPApp.TWebRequest.Cookie
Delphi
property Cookie: string index 27 read GetStringVariable;
C++
__property System::UnicodeString Cookie = {read=GetStringVariable, index=27};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Web.HTTPApp.pas Web.HTTPApp.hpp |
Web.HTTPApp | TWebRequest |
Description
Reports the value of the Cookie header of the HTTP request message.
Use Cookie to read the "cookie" strings provided in the Web client request. Cookie strings are used to track state information in a Web application. Cookie is the unparsed value of the Cookie header. The Cookie header can include multiple fields separated by semicolons. Use the CookieFields property to work with the Cookie header on a field-by-field basis.