Web.ApacheHTTP.TApacheRequest.ReadString
Delphi
function ReadString(Count: Integer): AnsiString; override;
C++
virtual System::AnsiString __fastcall ReadString(int Count);
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| function | public | Web.ApacheHTTP.pas Web.ApacheHTTP.hpp |
Web.ApacheHTTP | TApacheRequest |
Description
Provides the abstract (pure virtual) prototype for a method to read Count bytes from the HTTP request into a string. {{#multireplace:Web.ApacheHTTP.TApacheRequest.ReadString|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}} inherits from {{#multireplace:Web.HTTPApp.TWebRequest.ReadString|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}}. All content below this line refers to {{#multireplace:Web.HTTPApp.TWebRequest.ReadString|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}}.
Provides the abstract (pure virtual) prototype for a method to read Count bytes from the HTTP request into a string.
Descendants of TWebRequest implement ReadString. ReadString is used to load content information from the HTTP request into a string. Use ReadString to get the next chunk of information when the content of the request message is too large for the Content property.