Web.HTTPApp.TAbstractWebSession.GetTimeoutMinutes

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetTimeoutMinutes: Integer; virtual; abstract;

C++

virtual int __fastcall GetTimeoutMinutes(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 TimeoutMinutes property.

GetTimeoutMinutes is the protected read implementation of the TimeoutMinutes property.

In TAbstractWebSession, GetTimeoutMinutes 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