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


Property TCookie.Domain

Declaration
property Domain: String read GetDomain write SetDomain;
Description



Property TCookie.Expires

Declaration
property Expires: DateTime read GetExpires write SetExpires;
Description



Method TCookie.GetDomain

Declaration
function GetDomain: String;
Description



Method TCookie.GetExpires

Declaration
function GetExpires: DateTime;
Description



Method TCookie.GetHeaderValue

Declaration
function GetHeaderValue: String;
Description



Method TCookie.GetName

Declaration
function GetName: String;
Description



Method TCookie.GetPath

Declaration
function GetPath: String;
Description



Method TCookie.GetSecure

Declaration
function GetSecure: Boolean;
Description



Method TCookie.GetValue

Declaration
function GetValue: String;
Description



Property TCookie.HeaderValue

Declaration
property HeaderValue: String read GetHeaderValue;
Description



Property TCookie.Name

Declaration
property Name: String read GetName write SetName;
Description



Property TCookie.Path

Declaration
property Path: String read GetPath write SetPath;
Description



Property TCookie.Secure

Declaration
property Secure: Boolean read GetSecure write SetSecure;
Description



Method TCookie.SetDomain

Declaration
procedure SetDomain(Value: String);
Description



Method TCookie.SetExpires

Declaration
procedure SetExpires(Value: DateTime);
Description



Method TCookie.SetName

Declaration
procedure SetName(Value: String);
Description



Method TCookie.SetPath

Declaration
procedure SetPath(Value: String);
Description



Method TCookie.SetSecure

Declaration
procedure SetSecure(Value: Boolean);
Description



Method TCookie.SetValue

Declaration
procedure SetValue(Value: String);
Description



Property TCookie.Value

Declaration
property Value: String read GetValue write SetValue;
Description