Data.Cloud.AzureAPI.TAzureBlobService.GetContainerProperties

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetContainerProperties(ContainerName: string; out Properties: TStrings;  ResponseInfo: TCloudResponseInfo = nil): Boolean; overload;
function GetContainerProperties(ContainerName: string; out Properties, Metadata: TStrings;  ResponseInfo: TCloudResponseInfo = nil): Boolean; overload;

C++

bool __fastcall GetContainerProperties(System::UnicodeString ContainerName, /* out */ System::Classes::TStrings* &Properties, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0))/* overload */;
bool __fastcall GetContainerProperties(System::UnicodeString ContainerName, /* out */ System::Classes::TStrings* &Properties, /* out */ System::Classes::TStrings* &Metadata, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0))/* overload */;

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.AzureAPI.pas
Data.Cloud.AzureAPI.hpp
Data.Cloud.AzureAPI TAzureBlobService

Description

Returns the properties for the container with the given name.

GetContainerProperties is used to create a new container with the given name.

There are two overloaded GetContainerProperties methods. The following table describes the parameters:

Parameter Description

ContainerName

The name of the container to get the properties for.

Properties

The outputted properties, or nil if the call fails.

Metadata

The outputted metadata, or nil if the call fails.

ResponseInfo

The optional class for storing response info into.

The method returns True if the population was successful, and False otherwise.

See Also