DSAzure.TAzureBlobService.GetBlobProperties

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetBlobProperties(const ContainerName: String; const BlobName: String;  const Snapshot: String = ''; const LeaseId: String = ''): boolean;

C++

bool __fastcall GetBlobProperties(const System::UnicodeString ContainerName, const System::UnicodeString BlobName, const System::UnicodeString Snapshot = System::UnicodeString(), const System::UnicodeString LeaseId = System::UnicodeString());

Properties

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

Description

Retrieves the properties for the specified blob.

GetBlobProperties retrieves the properties for the blob with the given name in the specified container.

If Snapshot is specified, then the properties for the given snapshot are retrieved instead.

If a lease has been acquired, then you need to specify the LeaseId as well.

To access the properties after calling GetBlobProperties, call PopulateContainerProperties, which takes in a TStrings and populates it with the properties retrieved with the previous call.

See Also