CloudQueueClient.ListQueuesSegmented 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
ListQueuesSegmented(QueueContinuationToken) |
Returns a result segment containing a collection of queues. |
ListQueuesSegmented(String, QueueContinuationToken) |
Returns a result segment containing a collection of queues. |
ListQueuesSegmented(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext) |
Returns a result segment containing a collection of queues. |
ListQueuesSegmented(QueueContinuationToken)
Returns a result segment containing a collection of queues.
public virtual Microsoft.Azure.Storage.Queue.QueueResultSegment ListQueuesSegmented (Microsoft.Azure.Storage.Queue.QueueContinuationToken currentToken);
abstract member ListQueuesSegmented : Microsoft.Azure.Storage.Queue.QueueContinuationToken -> Microsoft.Azure.Storage.Queue.QueueResultSegment
override this.ListQueuesSegmented : Microsoft.Azure.Storage.Queue.QueueContinuationToken -> Microsoft.Azure.Storage.Queue.QueueResultSegment
Public Overridable Function ListQueuesSegmented (currentToken As QueueContinuationToken) As QueueResultSegment
Parameters
- currentToken
- QueueContinuationToken
A QueueContinuationToken continuation token returned by a previous listing operation.
Returns
A QueueResultSegment object.
Applies to
ListQueuesSegmented(String, QueueContinuationToken)
Returns a result segment containing a collection of queues.
public virtual Microsoft.Azure.Storage.Queue.QueueResultSegment ListQueuesSegmented (string prefix, Microsoft.Azure.Storage.Queue.QueueContinuationToken currentToken);
abstract member ListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.QueueContinuationToken -> Microsoft.Azure.Storage.Queue.QueueResultSegment
override this.ListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.QueueContinuationToken -> Microsoft.Azure.Storage.Queue.QueueResultSegment
Public Overridable Function ListQueuesSegmented (prefix As String, currentToken As QueueContinuationToken) As QueueResultSegment
Parameters
- prefix
- String
A string containing the queue name prefix.
- currentToken
- QueueContinuationToken
A QueueContinuationToken continuation token returned by a previous listing operation.
Returns
A QueueResultSegment object.
Applies to
ListQueuesSegmented(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext)
Returns a result segment containing a collection of queues.
public virtual Microsoft.Azure.Storage.Queue.QueueResultSegment ListQueuesSegmented (string prefix, Microsoft.Azure.Storage.Queue.Protocol.QueueListingDetails queueListingDetails, int? maxResults, Microsoft.Azure.Storage.Queue.QueueContinuationToken currentToken, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);
abstract member ListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.Protocol.QueueListingDetails * Nullable<int> * Microsoft.Azure.Storage.Queue.QueueContinuationToken * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.QueueResultSegment
override this.ListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.Protocol.QueueListingDetails * Nullable<int> * Microsoft.Azure.Storage.Queue.QueueContinuationToken * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.QueueResultSegment
Public Overridable Function ListQueuesSegmented (prefix As String, queueListingDetails As QueueListingDetails, maxResults As Nullable(Of Integer), currentToken As QueueContinuationToken, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As QueueResultSegment
Parameters
- prefix
- String
A string containing the queue name prefix.
- queueListingDetails
- QueueListingDetails
A QueueListingDetails enumeration describing which items to include in the listing.
A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the
per-operation limit of 5000. If this value is null
, the maximum possible number of results will be returned, up to 5000.
- currentToken
- QueueContinuationToken
A QueueContinuationToken returned by a previous listing operation.
- options
- QueueRequestOptions
A QueueRequestOptions object that specifies additional options for the request. If null
, default options are applied to the request.
- operationContext
- OperationContext
An OperationContext object that represents the context for the current operation.
Returns
A QueueResultSegment object.
Applies to
Azure SDK for .NET