BlobBaseClient.GetTags(BlobRequestConditions, CancellationToken) Method

Definition

Gets the tags associated with the underlying blob.

For more information, see Get Blob Tags

public virtual Azure.Response<Azure.Storage.Blobs.Models.GetBlobTagResult> GetTags (Azure.Storage.Blobs.Models.BlobRequestConditions conditions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetTags : Azure.Storage.Blobs.Models.BlobRequestConditions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.GetBlobTagResult>
override this.GetTags : Azure.Storage.Blobs.Models.BlobRequestConditions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.GetBlobTagResult>
Public Overridable Function GetTags (Optional conditions As BlobRequestConditions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of GetBlobTagResult)

Parameters

conditions
BlobRequestConditions

Optional BlobRequestConditions to add conditions on getting the blob's tags. Note that TagConditions is currently the only condition supported by GetTags.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be cancelled.

Returns

A Response<T> on successfully getting tags.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to