Data.Cloud.AmazonAPI.TAmazonStorageService.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); override;

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, Data::Cloud::Cloudapi::TCloudHTTP* Request, System::Classes::TStream* &Content);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI TAmazonStorageService

Description

Handles the StringToSign after it is created.

Data.Cloud.AmazonAPI.TAmazonStorageService.PrepareRequestSignature inherits from Data.Cloud.CloudAPI.TCloudService.PrepareRequestSignature. All content below this line refers to Data.Cloud.CloudAPI.TCloudService.PrepareRequestSignature.

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