StorageQueueCollection.GetAsync(String, 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.
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: 2023-05-01
- Resource: StorageQueueResource
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.Storage.StorageQueueResource>> GetAsync (string queueName, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.Storage.StorageQueueResource>>
override this.GetAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.Storage.StorageQueueResource>>
Public Overridable Function GetAsync (queueName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of 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 an empty string, and was expected to be non-empty.
queueName
is null.
Applies to
Azure SDK for .NET