Web.HTTPApp.TAbstractWebSession.SetTimeoutMinutes

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetTimeoutMinutes(AValue: Integer); virtual; abstract;

C++

virtual void __fastcall SetTimeoutMinutes(int AValue) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TAbstractWebSession

Description

Sets the value of the TimoutMinutes property.

SetTimeoutMinutes is the protected write implementation of the TimeoutMinutes property.

AValue is the number of minutes that can elapse before the session terminates itself.

In TAbstractWebSession, SetTimeoutMinutes 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 TimeoutMinutes property.

See Also