Web.ApacheHTTP.TApacheRequest.ReadString

From RAD Studio API Documentation
Jump to: navigation, search

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.

Web.ApacheHTTP.TApacheRequest.ReadString inherits from Web.HTTPApp.TWebRequest.ReadString. All content below this line refers to Web.HTTPApp.TWebRequest.ReadString.

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.

See Also