Web.HTTPApp.TAbstractWebSession.SessionID

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SessionID: string read GetSessionID;

C++

__property System::UnicodeString SessionID = {read=GetSessionID};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TAbstractWebSession

Description

Uniquely identifies the Session.

SessionID is an automatically-generated identifier that uniquely identifies the session. The UpdateResponse method adds this identifier to response messages, using a cookie. When the application receives a request containing a cookie with a session ID, the application uses the ID to recreate a copy of the previous session object.

See Also