Web.HTTPApp.TAbstractWebSession.Values
Delphi
property Values[const AName: string]: Variant read GetValue write SetValue;
C++
__property System::Variant Values[const System::UnicodeString AName] = {read=GetValue, write=SetValue};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Web.HTTPApp.pas Web.HTTPApp.hpp |
Web.HTTPApp | TAbstractWebSession |
Description
Lists the named values that the session stores.
Use Values to get or set the information that the session stores. Because sessions are associated with individual users, this information typically represents information about the user or choices the user makes. The Values property can be used to implement application-specific tasks, such as saving user preferences or maintaining a list user selections.
Each value is indexed by a name that indicates its meaning. The names can be any application-defined string.