Web.HTTPApp.TAbstractWebRequestFiles.GetItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetItem(I: Integer): TAbstractWebRequestFile; virtual; abstract;

C++

virtual TAbstractWebRequestFile* __fastcall GetItem(int I) = 0 ;

Properties

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

Description

Returns the value of the Items property.

GetItem is the protected read implementation of the Items property.

I is the index of the Web request file object to return.

In TAbstractWebRequestFile, GetItem 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 Items property.