Web.HTTPApp.TWebRequest.QueryFields

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property QueryFields: TStrings read GetQueryFields;

C++

__property System::Classes::TStrings* QueryFields = {read=GetQueryFields};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TWebRequest

Description

Represents the parsed contents of the Query in the URL of the HTTP request message.

Use QueryFields to work with individual query values provided by the Web client request. The Query property is parsed into separate fields by separating into substrings whenever an ampersand is encountered.

Each query field appears as a separate string in the QueryFields list with the form Name=Value. As a TStrings object, QueryFields allows applications to manipulate the individual fields by name or value.

See Also