Class Session

Declaration
Session = class(TObject)
  property ActiveUsers: Integer read GetActiveUsers;
  property ClientState: Integer read GetCState write SetCState;
  function GetActiveUsers: Integer;
  function GetCState: Integer;
  function GetIpAddr: String;
  function GetSBrand: String;
  function GetTLastAction: DateTime;
  function GetTLogin: DateTime;
  property IpAddr: String read GetIpAddr write SetIpAddr;
  function Param(Name: String): Variant;
  property SBrand: String read GetSBrand write SetSBrand;
  procedure SetCState(Value: Integer);
  procedure SetIpAddr(Value: String);
  procedure SetSBrand(Value: String);
  procedure SetTLastAction(Value: DateTime);
  procedure SetTLogin(Value: DateTime);
  procedure Store(name: String; value: Variant);
  property TLastAction: DateTime read GetTLastAction write SetTLastAction;
  property TLogin: DateTime read GetTLogin write SetTLogin;
end;
Description


Property Session.ActiveUsers

Declaration
property ActiveUsers: Integer read GetActiveUsers;
Description



Property Session.ClientState

Declaration
property ClientState: Integer read GetCState write SetCState;
Description



Method Session.GetActiveUsers

Declaration
function GetActiveUsers: Integer;
Description



Method Session.GetCState

Declaration
function GetCState: Integer;
Description



Method Session.GetIpAddr

Declaration
function GetIpAddr: String;
Description



Method Session.GetSBrand

Declaration
function GetSBrand: String;
Description



Method Session.GetTLastAction

Declaration
function GetTLastAction: DateTime;
Description



Method Session.GetTLogin

Declaration
function GetTLogin: DateTime;
Description



Property Session.IpAddr

Declaration
property IpAddr: String read GetIpAddr write SetIpAddr;
Description



Method Session.Param

Declaration
function Param(Name: String): Variant;
Description



Property Session.SBrand

Declaration
property SBrand: String read GetSBrand write SetSBrand;
Description



Method Session.SetCState

Declaration
procedure SetCState(Value: Integer);
Description



Method Session.SetIpAddr

Declaration
procedure SetIpAddr(Value: String);
Description



Method Session.SetSBrand

Declaration
procedure SetSBrand(Value: String);
Description



Method Session.SetTLastAction

Declaration
procedure SetTLastAction(Value: DateTime);
Description



Method Session.SetTLogin

Declaration
procedure SetTLogin(Value: DateTime);
Description



Method Session.Store

Declaration
procedure Store(name: String; value: Variant);
Description



Property Session.TLastAction

Declaration
property TLastAction: DateTime read GetTLastAction write SetTLastAction;
Description



Property Session.TLogin

Declaration
property TLogin: DateTime read GetTLogin write SetTLogin;
Description