Web.HTTPApp.TWebSessionScope
Delphi
TWebSessionScope = (ssUnlimited, ssUser, ssUserAndIP);
C++
enum DECLSPEC_DENUM TWebSessionScope : unsigned char { ssUnlimited, ssUser, ssUserAndIP };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | Web.HTTPApp.pas Web.HTTPApp.hpp |
Web.HTTPApp | Web.HTTPApp |
Description
Represents session scopes (uniqueness):
ssUnlimited
- any request without a session ID will create a new session;ssUser
- session will be unique per user. Requires authentication;ssUserAndIP
- session will be unique per user and IP address. Requires authentication.