Data.Cloud.CloudAPI.TCloudService.BuildStringToSignPrefix
Delphi
function BuildStringToSignPrefix(const HTTPVerb: string): string; virtual;
C++
virtual System::UnicodeString __fastcall BuildStringToSignPrefix(const System::UnicodeString HTTPVerb);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | Data.Cloud.CloudAPI.pas Data.Cloud.CloudAPI.hpp |
Data.Cloud.CloudAPI | TCloudService |
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.