Data.Cloud.AzureAPI.TAzureBlobService.DeleteContainer
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: Data.Cloud.AzureAPI.pas Data.Cloud.AzureAPI.hpp
| |
Unit: Data.Cloud.AzureAPI | |
Parent: TAzureBlobService |
Delphi
function DeleteContainer(ContainerName: string): Boolean; overload; deprecated 'Use overloaded method instead';
function DeleteContainer(const AContainerName: string; const AResponseInfo: TCloudResponseInfo): Boolean; overload;
C++
bool __fastcall DeleteContainer _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (System::UnicodeString ContainerName)/* overload */;
bool __fastcall DeleteContainer(const System::UnicodeString AContainerName, Data::Cloud::Cloudapi::TCloudResponseInfo* const AResponseInfo)/* overload */;
Description
Deletes the container with the given name.
DeleteContainer is used to delete the container with the given name.
The following table describes the parameters:
Parameter | Description |
---|---|
|
The name of the container to delete. |
|
The optional class for storing response info into. |
The method returns True if the deletion was successful, and False otherwise.