Web.HTTPApp.TWebSessionIdLocation
Delphi
TWebSessionIdLocation = (ilCookie, ilHeader, ilQuery);
C++
enum DECLSPEC_DENUM TWebSessionIdLocation : unsigned char { ilCookie, ilHeader, ilQuery };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | Web.HTTPApp.pas Web.HTTPApp.hpp |
Web.HTTPApp | Web.HTTPApp |
Description
Represents session id location:
ilCookie
- session ID is put into a cookie. The cookie is transferred automatically between the web server and the client (browser).ilHeader
- session ID is put into request/response headers. It is the web client's responsibility to properly get/store/put the header value.ilQuery
- session ID is put into the response header and read from the request URL query parameter. It is the web client's responsibility to properly get the header value, store it, and put the URL query parameter.