API:Web.CGIHTTP.TCGIResponse.GetStringVariable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetStringVariable(Index: Integer): string; override;

C++

virtual System::UnicodeString __fastcall GetStringVariable(int Index);

Properties

Type Visibility Source Unit Parent
function protected
Web.CGIHTTP.pas
Web.CGIHTTP.hpp
Web.CGIHTTP TCGIResponse

Description

Provides the prototype of a method to extract a string value from an indexed table of HTTP header variables.

Web.CGIHTTP.TCGIResponse.GetStringVariable inherits from Web.HTTPApp.TWebResponse.GetStringVariable. All content below this line refers to Web.HTTPApp.TWebResponse.GetStringVariable.

Provides the prototype of a method to extract a string value from an indexed table of HTTP header variables.

GetStringVariable provides the abstract (pure virtual) prototype of a method to extract a string value from an indexed table of HTTP header variables. Descendants of TWebResponse implement GetStringVariable to provide a method by which the string values are read from the internal table used to store HTTP header variables. The response object uses GetStringVariable to access the properties that represent strings.

See Also