Web.HTTPApp.TWebResponse.GetStatusCode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetStatusCode: Integer; virtual; abstract;

C++

virtual int __fastcall GetStatusCode() = 0 ;

Properties

Type Visibility Source Unit Parent
function protected
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TWebResponse

Description

Provides the abstract (pure virtual) prototype of a method to access the StatusCode property.

Descendants of TWebResponse implement GetStatusCode to provide an access method for internal representation of the StatusCode property. This method is abstract (pure virtual) because response objects for different types of HTTP applications store the value of the StatusCode property differently.

See Also