BlobLeaseClient.Release(RequestConditions, CancellationToken) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The Release(RequestConditions, CancellationToken) operation releases the container or blob's previously-acquired lease.
The lease may be released if the LeaseId matches that associated with the container or blob. Releasing the lease allows another client to immediately acquire the lease for the container or blob as soon as the release is complete.
For more information, see Lease Container.
public virtual Azure.Response<Azure.Storage.Blobs.Models.ReleasedObjectInfo> Release (Azure.RequestConditions conditions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member Release : Azure.RequestConditions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.ReleasedObjectInfo>
override this.Release : Azure.RequestConditions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.ReleasedObjectInfo>
Public Overridable Function Release (Optional conditions As RequestConditions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of ReleasedObjectInfo)
Parameters
- conditions
- RequestConditions
Optional BlobLeaseRequestConditions to add conditions on releasing a lease.
- cancellationToken
- CancellationToken
Optional CancellationToken to propagate notifications that the operation should be cancelled.
Returns
A Response<T> describing the updated blob or container.
Remarks
A RequestFailedException will be thrown if a failure occurs.
Applies to
Azure SDK for .NET