Class TCookie
Declaration
TCookie = class(TObject)
property Domain: String read GetDomain write SetDomain;
property Expires: DateTime read GetExpires write SetExpires;
function GetDomain: String;
function GetExpires: DateTime;
function GetHeaderValue: String;
function GetName: String;
function GetPath: String;
function GetSecure: Boolean;
function GetValue: String;
property HeaderValue: String read GetHeaderValue;
property Name: String read GetName write SetName;
property Path: String read GetPath write SetPath;
property Secure: Boolean read GetSecure write SetSecure;
procedure SetDomain(Value: String);
procedure SetExpires(Value: DateTime);
procedure SetName(Value: String);
procedure SetPath(Value: String);
procedure SetSecure(Value: Boolean);
procedure SetValue(Value: String);
property Value: String read GetValue write SetValue;
end;
Description
Declaration
property Domain: String read GetDomain write SetDomain;
Description
Declaration
property Expires: DateTime read GetExpires write SetExpires;
Description
Declaration
function GetDomain: String;
Description
Declaration
function GetExpires: DateTime;
Description
Declaration
function GetHeaderValue: String;
Description
Declaration
function GetName: String;
Description
Declaration
function GetPath: String;
Description
Declaration
function GetSecure: Boolean;
Description
Declaration
function GetValue: String;
Description
Declaration
property HeaderValue: String read GetHeaderValue;
Description
Declaration
property Name: String read GetName write SetName;
Description
Declaration
property Path: String read GetPath write SetPath;
Description
Declaration
property Secure: Boolean read GetSecure write SetSecure;
Description
Declaration
procedure SetDomain(Value: String);
Description
Declaration
procedure SetExpires(Value: DateTime);
Description
Declaration
procedure SetName(Value: String);
Description
Declaration
procedure SetPath(Value: String);
Description
Declaration
procedure SetSecure(Value: Boolean);
Description
Declaration
procedure SetValue(Value: String);
Description
Declaration
property Value: String read GetValue write SetValue;
Description