Data.Cloud.CloudAPI.TCloudService.IssueMergeRequest
[–] Properties | |
---|---|
Type: function | |
Visibility: protected | |
Source: Data.Cloud.CloudAPI.pas Data.Cloud.CloudAPI.hpp
| |
Unit: Data.Cloud.CloudAPI | |
Parent: TCloudService |
Delphi
function IssueMergeRequest(URL: string; Headers: TStringList;
QueryParameters: TStringList; const QueryPrefix: string;
ResponseInfo: TCloudResponseInfo;
Content: TStream): TCloudHTTP; virtual;
C++
virtual TCloudHTTP* __fastcall IssueMergeRequest(System::UnicodeString URL, System::Classes::TStringList* Headers, System::Classes::TStringList* QueryParameters, const System::UnicodeString QueryPrefix, TCloudResponseInfo* ResponseInfo, System::Classes::TStream* Content);
Description
Executes a MERGE request with the given parameters.
IssueMergeRequest takes a stream to use as the request body.
IssueMergeRequest 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 |
|
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 |
|
The stream to send as the request content (required) |