Data.Cloud.CloudAPI.TCloudService.PrepareRequestSignature

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure PrepareRequestSignature(const HTTPVerb: string;
const Headers, QueryParameters: TStringList;
const StringToSign: string;
var URL: string; Request: TCloudHTTP; var Content: TStream); virtual;

C++

virtual void __fastcall PrepareRequestSignature(const System::UnicodeString HTTPVerb, System::Classes::TStringList* const Headers, System::Classes::TStringList* const QueryParameters, const System::UnicodeString StringToSign, System::UnicodeString &URL, TCloudHTTP* Request, System::Classes::TStream* &Content);

Properties

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

Description

Handles the StringToSign after it is created.

The following table shows the significance of the parameters:

Parameter Description

HTTPVerb

The HTTP verb (for example, GET, POST) of the request

Headers

The header name/value pairs

QueryParameters

The query parameter name/value pairs

StringToSign

The StringToSign for the request

URL

The URL of the request

Request

The request object

Content

The content stream of the request

See Also