Data.Cloud.AzureAPI.TAzureTableService.GetRequiredHeaderNames

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

function GetRequiredHeaderNames(out InstanceOwner: Boolean): TStrings; override;

C++

virtual System::Classes::TStrings* __fastcall GetRequiredHeaderNames(/* out */ bool &InstanceOwner);

Description

Returns the list of required header names.

The GetRequiredHeaderNames method returns the list of required header names, but not values.

GetRequiredHeaderNames:

  • Overrides the base implementation, as if the Table Service had different/fewer required headers.
  • Lazy-loads and returns FRequiredHeaderNames.
  • Sets InstanceOwner to False, because this class instance will manage the memory for the object. This means that the caller does not own the list.

See Also