Web.HTTPApp.TWebRequest.GetIntegerVariable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetIntegerVariable(Index: Integer): Integer; virtual; abstract;

C++

virtual int __fastcall GetIntegerVariable(int Index) = 0 ;

Properties

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

Description

Provides the abstract (pure virtual) prototype for a method to extract an integer value from an indexed table of HTTP header variables.

Descendants of TWebRequest implement GetIntegerVariable to provide a method by which the integer values are read from the header strings of the HTTP request message. The request object uses GetIntegerVariable to access the properties that represent integers from the HTTP request headers.

See Also