Web.ApacheHTTP.TApacheResponse.SendResponse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SendResponse; override;

C++

virtual void __fastcall SendResponse();

Properties

Type Visibility Source Unit Parent
procedure
function
public
Web.ApacheHTTP.pas
Web.ApacheHTTP.hpp
Web.ApacheHTTP TApacheResponse

Description

Provides the abstract (pure virtual) prototype of a method that sends the HTTP response message to the web client.

Web.ApacheHTTP.TApacheResponse.SendResponse inherits from Web.HTTPApp.TWebResponse.SendResponse. All content below this line refers to Web.HTTPApp.TWebResponse.SendResponse.

Provides the abstract (pure virtual) prototype of a method that sends the HTTP response message to the web client.

Call SendResponse after setting the properties of the HTTP response object to specify the response that should be made to the web client. If the request should be redirected to another URI, it is more efficient to call SendRedirect instead.

See Also