次の方法で共有


StorageQueueCollection.Get(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. : StorageQueues_Get.
  • Default Api Version. : 2025-06-01.
public virtual Azure.Response<Azure.ResourceManager.Storage.StorageQueueResource> Get(string queueName, System.Threading.CancellationToken cancellationToken = default);
abstract member Get : string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Storage.StorageQueueResource>
override this.Get : string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Storage.StorageQueueResource>
Public Overridable Function Get (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