StorageQueueCollection.GetAll 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.
Overloads
GetAll(Nullable<Int32>, String, CancellationToken) |
Gets a list of all the queues under the specified storage account
|
GetAll(String, String, CancellationToken) |
Gets a list of all the queues under the specified storage account
|
GetAll(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.Pageable<Azure.ResourceManager.Storage.StorageQueueResource> GetAll (int? maxpagesize = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Storage.StorageQueueResource>
override this.GetAll : Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Storage.StorageQueueResource>
Public Overridable Function GetAll (Optional maxpagesize As Nullable(Of Integer) = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of StorageQueueResource)
Parameters
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
A collection of StorageQueueResource that may take multiple service requests to iterate over.
Applies to
GetAll(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.Pageable<Azure.ResourceManager.Storage.StorageQueueResource> GetAll (string maxpagesize, string filter, System.Threading.CancellationToken cancellationToken);
public virtual Azure.Pageable<Azure.ResourceManager.Storage.StorageQueueResource> GetAll (string maxpagesize = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Storage.StorageQueueResource>
override this.GetAll : string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Storage.StorageQueueResource>
Public Overridable Function GetAll (maxpagesize As String, filter As String, cancellationToken As CancellationToken) As Pageable(Of StorageQueueResource)
Public Overridable Function GetAll (Optional maxpagesize As String = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(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
A collection of StorageQueueResource that may take multiple service requests to iterate over.
Applies to
Azure SDK for .NET