Web.HTTPApp.TAbstractWebSession.GetSessionID
Delphi
function GetSessionID: string; virtual; abstract;
C++
virtual System::UnicodeString __fastcall GetSessionID(void) = 0 ;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | Web.HTTPApp.pas Web.HTTPApp.hpp |
Web.HTTPApp | TAbstractWebSession |
Description
Returns the value of the SessionID property.
GetSessionID is the protected read implementation of the SessionID property.
In TAbstractWebSession, GetSessionID is abstract or, in C++ terminology, pure virtual, meaning it has no implementation. Descendant classes must override this method to provide an implementation for the SessionID property.