Share via


QueueServiceResource.GetStorageQueue(String, CancellationToken) Method

Definition

Gets the queue with the specified queue name, under the specified account if it exists.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues/{queueName}
  • Operation Id: Queue_Get
  • Default Api Version: 2022-09-01
  • Resource: StorageQueueResource
public virtual Azure.Response<Azure.ResourceManager.Storage.StorageQueueResource> GetStorageQueue (string queueName, System.Threading.CancellationToken cancellationToken = default);
abstract member GetStorageQueue : string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Storage.StorageQueueResource>
override this.GetStorageQueue : string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Storage.StorageQueueResource>
Public Overridable Function GetStorageQueue (queueName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of StorageQueueResource)

Parameters

queueName
String

A queue name must be unique within a storage account and must be between 3 and 63 characters.The name must comprise of lowercase alphanumeric and dash(-) characters only, it should begin and end with an alphanumeric character and it cannot have two consecutive dash(-) characters.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

queueName is null.

queueName is an empty string, and was expected to be non-empty.

Applies to