Data.Cloud.AzureAPI.TAzureBlobService.BreakBlobLease
Delphi
function BreakBlobLease(ContainerName, BlobName: string; out LeaseTimeRemaining: Integer; ResponseInfo: TCloudResponseInfo = nil): Boolean;
C++
bool __fastcall BreakBlobLease(System::UnicodeString ContainerName, System::UnicodeString BlobName, /* out */ int &LeaseTimeRemaining, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0));
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | Data.Cloud.AzureAPI.pas Data.Cloud.AzureAPI.hpp |
Data.Cloud.AzureAPI | TAzureBlobService |
Description
Breaks a previously acquired lease, without specifying the LeaseId.
BreakBlobLease releases a lease that was previously acquired. Calling this method is similar to calling ReleaseBlobLease, but because the LeaseId is not specified, the lease is allowed to expire before a new lease can be acquired. In this period, the lease is not able to be renewed.
The following table describes the parameters:
Parameter | Description |
---|---|
|
The name of the container the blob is in. |
|
The name of the blob to release the lease for. |
|
The number of seconds remaining until the lease expires. |
|
The optional class for storing response info into. |
The method returns True if the operation was successful, and False otherwise.