Web.HTTPApp.TWebRequest.ReadString

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ReadString(Count: Integer): string; virtual; abstract;

C++

virtual System::UnicodeString __fastcall ReadString(int Count) = 0 ;

Properties

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

Description

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