Data.Cloud.CloudAPI.TCloudService.PopulateResponseInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure PopulateResponseInfo(ACloudHTTP: TCloudHTTP; ResponseInfo: TCloudResponseInfo); virtual;

C++

virtual void __fastcall PopulateResponseInfo(TCloudHTTP* ACloudHTTP, TCloudResponseInfo* ResponseInfo);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Data.Cloud.CloudAPI.pas
Data.Cloud.CloudAPI.hpp
Data.Cloud.CloudAPI TCloudService

Description

Populates the given ResponseInfo with appropriate information from the Response.

PopulateResponseInfo fills in the status code, status message, and response headers for the ResponseInfo object, based on the values stored in the given Response object.

The following table shows the significance of the parameters:

Parameter Description

Response

The response object to get the values from

ResponseInfo

The TCloudResponseInfo object to populate with information from the Response

See Also