Web.HTTPApp.TWebRequest.ContentFields

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ContentFields: TStrings read GetContentFields;

C++

__property System::Classes::TStrings* ContentFields = {read=GetContentFields};

Properties

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

Description

Reports the parsed content of a POST request message.

Use ContentFields to read the fields of an HTTP request message when the MethodType is mtPost. The Content of the HTTP request is parsed, separating into fields at the ampersand character.

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

See Also