Data.Cloud.CloudAPI.TCloudService.BuildStringToSignPrefix

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

function BuildStringToSignPrefix(const HTTPVerb: string): string; virtual;

C++

virtual System::UnicodeString __fastcall BuildStringToSignPrefix(const System::UnicodeString HTTPVerb);

Description

Builds the first part of the StringToSign, including the HTTP Verb.

BuildStringToSignPrefix returns the first portion of the StringToSign, before headers and query parameters.

You can override BuildStringToSignPrefix if you need to add the prefix to the StringToSign before header and query parameter information is appended to it.

HTTPVerb represents the HTTP verb (for example, GET, POST) of the request type.

See Also