Data.Cloud.AzureAPI.TAzureBlobService.GetContainerProperties
Delphi
function GetContainerProperties(ContainerName: string; out Properties: TStrings; ResponseInfo: TCloudResponseInfo = nil): Boolean; overload; deprecated 'Use overloaded method instead';
function GetContainerProperties(ContainerName: string; out Properties, Metadata: TStrings; ResponseInfo: TCloudResponseInfo = nil): Boolean; overload; deprecated 'Use overloaded method instead';
function GetContainerProperties(const AContainerName: string; const AResponseInfo: TCloudResponseInfo): TArray<TPair<string, string>>; overload;
C++
bool __fastcall GetContainerProperties _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (System::UnicodeString ContainerName, /* out */ System::Classes::TStrings* &Properties, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0))/* overload */;
bool __fastcall GetContainerProperties _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (System::UnicodeString ContainerName, /* out */ System::Classes::TStrings* &Properties, /* out */ System::Classes::TStrings* &Metadata, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0))/* overload */;
System::DynamicArray<System::Generics::Collections::TPair__2<System::UnicodeString,System::UnicodeString> > __fastcall GetContainerProperties(const System::UnicodeString AContainerName, Data::Cloud::Cloudapi::TCloudResponseInfo* const AResponseInfo)/* 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 |
---|---|
|
The name of the container to get the properties for. |
|
The outputted properties, or nil if the call fails. |
|
The outputted metadata, or nil if the call fails. |
|
The optional class for storing response info into. |
The method returns True if the population was successful, and False otherwise.