Data.Cloud.CloudAPI.TCloudService.IssueHeadRequest
Delphi
function IssueHeadRequest(URL: string; Headers: TStringList;  QueryParameters: TStringList; const QueryPrefix: string; ResponseInfo: TCloudResponseInfo): TCloudHTTP; virtual;
C++
virtual TCloudHTTP* __fastcall IssueHeadRequest(System::UnicodeString URL, System::Classes::TStringList* Headers, System::Classes::TStringList* QueryParameters, const System::UnicodeString QueryPrefix, TCloudResponseInfo* ResponseInfo);
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| function | protected | Data.Cloud.CloudAPI.pas Data.Cloud.CloudAPI.hpp | Data.Cloud.CloudAPI | TCloudService | 
Description
Executes a HEAD request with the given parameters.
IssueHeadRequest returns the TCloudHTTP instance used to issue the request.
The following table shows the significance of the parameters:
| Parameter | Description | 
|---|---|
| 
 | The URL to issue the request to | 
| 
 | The header name/value pairs to use in the request and authentication | 
| 
 | The query parameter name/value pairs to use in the request and authentication | 
| 
 | The string to prefix the query string with when building the StringToSign | 
| 
 | The TCloudResponseInfo instance to populate from the response of the request, or nil |