Web.ApacheHTTP.TApacheRequest.WriteString

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function WriteString(const AString: string): Boolean; override;

C++

virtual bool __fastcall WriteString(const System::UnicodeString AString);

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 write the string AString back to the HTTP client.

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

Provides the abstract (pure virtual) prototype for a method to write the string AString back to the HTTP client.

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

See Also