Web.HTTPApp.TWebRequest.WriteClient

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function WriteClient(var Buffer; Count: Integer): Integer; virtual; abstract;

C++

virtual int __fastcall WriteClient(void *Buffer, 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 write Count bytes from Buffer back to the HTTP client.

Descendants of TWebRequest implement WriteClient. WriteClient is used by TWebResponse to send the contents of a response to the Web client.

See Also