Web.HTTPApp.TAbstractWebSession.Terminate
Delphi
procedure Terminate; virtual; abstract;
C++
virtual void __fastcall Terminate(void) = 0 ;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | Web.HTTPApp.pas Web.HTTPApp.hpp |
Web.HTTPApp | TAbstractWebSession |
Description
Terminates the session.
Call Terminate to explicitly terminate a session. Once a session terminates, the application can no longer access its Values.
Sessions are terminated automatically when the application does not receive any requests for the session for TimoutMinutes minutes.
In TAbstractWebSession, Terminate is abstract or, in C++ terminology, pure virtual, meaning it has no implementation. Descendant classes must override this method to provide an implementation.