Data.Cloud.CloudAPI.TCloudService.PopulateResponseInfo

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Data.Cloud.CloudAPI.pas
Data.Cloud.CloudAPI.hpp
Unit: Data.Cloud.CloudAPI
Parent: TCloudService

Delphi

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

C++

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

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