DSAzure.TAzureBlobService.ListContainers

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ListContainers: String; overload;
function ListContainers(Params: array of const; Values: array of const): String; overload;

C++

System::UnicodeString __fastcall ListContainers()/* overload */;
System::UnicodeString __fastcall ListContainers(System::TVarRec *Params, const int Params_High, System::TVarRec *Values, const int Values_High)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
DSAzure.pas
DSAzure.hpp
DSAzure TAzureBlobService

Description

Retrieves the list of containers for the blob storage account.

ListContainers returns an XML string that contains a list of containers. You can optionally specify the URI parameters and their values by using the Params and Values arrays. A list of the available parameters, as well as an example of the returned XML can be found on the MSDN page in the See Also section.

See Also