共用方式為


StorageQueueCollection.GetAllAsync Method

Definition

Overloads

GetAllAsync(Nullable<Int32>, String, CancellationToken)

Gets a list of all the queues under the specified storage account

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues
  • Operation Id: Queue_List
  • Default Api Version: 2023-05-01
  • Resource: StorageQueueResource
GetAllAsync(String, String, CancellationToken)

Gets a list of all the queues under the specified storage account

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues
  • Operation Id: Queue_List
  • Default Api Version: 2022-09-01
  • Resource: StorageQueueResource

GetAllAsync(Nullable<Int32>, String, CancellationToken)

Source:
StorageQueueCollection.cs

Gets a list of all the queues under the specified storage account

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues
  • Operation Id: Queue_List
  • Default Api Version: 2023-05-01
  • Resource: StorageQueueResource
public virtual Azure.AsyncPageable<Azure.ResourceManager.Storage.StorageQueueResource> GetAllAsync (int? maxpagesize = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Storage.StorageQueueResource>
override this.GetAllAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Storage.StorageQueueResource>
Public Overridable Function GetAllAsync (Optional maxpagesize As Nullable(Of Integer) = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of StorageQueueResource)

Parameters

maxpagesize
Nullable<Int32>

Optional, a maximum number of queues that should be included in a list queue response.

filter
String

Optional, When specified, only the queues with a name starting with the given filter will be listed.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

An async collection of StorageQueueResource that may take multiple service requests to iterate over.

Applies to

GetAllAsync(String, String, CancellationToken)

Source:
StorageQueueCollection.cs
Source:
StorageQueueCollection.cs

Gets a list of all the queues under the specified storage account

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

Parameters

maxpagesize
String

Optional, a maximum number of queues that should be included in a list queue response.

filter
String

Optional, When specified, only the queues with a name starting with the given filter will be listed.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

An async collection of StorageQueueResource that may take multiple service requests to iterate over.

Applies to