Data.Cloud.AzureAPI.TAzureTableService.GetRequiredHeaderNames

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
function protected
Data.Cloud.AzureAPI.pas
Data.Cloud.AzureAPI.hpp
Data.Cloud.AzureAPI TAzureTableService

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