Web.CGIHTTP.TCGIRequest.ReadString

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ReadString(Count: Integer): string; override;

C++

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

Properties

Type Visibility Source Unit Parent
function public
Web.CGIHTTP.pas
Web.CGIHTTP.hpp
Web.CGIHTTP TCGIRequest

Description

Provides the method to read Count bytes from the HTTP request into a string.

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