Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

CloudQueueClient.ListQueuesSegmentedAsync Method (String, QueueListingDetails, Nullable(Int32), QueueContinuationToken, QueueRequestOptions, OperationContext) (Microsoft.WindowsAzure.Storage.Queue)

Initiates an asynchronous operation to return a result segment containing a collection of queues.

Namespace:   Microsoft.WindowsAzure.Storage.Queue
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<QueueResultSegment> ListQueuesSegmentedAsync(
	string prefix,
	QueueListingDetails queueListingDetails,
	Nullable<int> maxResults,
	QueueContinuationToken currentToken,
	QueueRequestOptions options,
	OperationContext operationContext
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<QueueResultSegment^>^ ListQueuesSegmentedAsync(
	String^ prefix,
	QueueListingDetails queueListingDetails,
	Nullable<int> maxResults,
	QueueContinuationToken^ currentToken,
	QueueRequestOptions^ options,
	OperationContext^ operationContext
)
 
[<DoesServiceRequestAttribute>]
abstract ListQueuesSegmentedAsync : 
        prefix:string *
        queueListingDetails:QueueListingDetails *
        maxResults:Nullable<int> *
        currentToken:QueueContinuationToken *
        options:QueueRequestOptions *
        operationContext:OperationContext -> Task<QueueResultSegment>
[<DoesServiceRequestAttribute>]
override ListQueuesSegmentedAsync : 
        prefix:string *
        queueListingDetails:QueueListingDetails *
        maxResults:Nullable<int> *
        currentToken:QueueContinuationToken *
        options:QueueRequestOptions *
        operationContext:OperationContext -> Task<QueueResultSegment>
 
<DoesServiceRequestAttribute>
Public Overridable Function ListQueuesSegmentedAsync (
	prefix As String,
	queueListingDetails As QueueListingDetails,
	maxResults As Nullable(OfInteger),
	currentToken As QueueContinuationToken,
	options As QueueRequestOptions,
	operationContext As OperationContext
) As Task(Of QueueResultSegment)

Parameters

prefix
Type: System.StringSystem::String^System.StringSystem.String

A string containing the queue name prefix.

queueListingDetails
Type: Microsoft.WindowsAzure.Storage.Queue.Protocol.QueueListingDetailsMicrosoft.WindowsAzure.Storage.Queue.Protocol::QueueListingDetailsMicrosoft.WindowsAzure.Storage.Queue.Protocol.QueueListingDetailsMicrosoft.WindowsAzure.Storage.Queue.Protocol.QueueListingDetails

A QueueListingDetails enumeration describing which items to include in the listing.

maxResults
Type: System.Nullable<Int32>System::Nullable<Int32>System.Nullable<Int32>System.Nullable(Of Int32)

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
Type: Microsoft.WindowsAzure.Storage.Queue.QueueContinuationTokenMicrosoft.WindowsAzure.Storage.Queue::QueueContinuationToken^Microsoft.WindowsAzure.Storage.Queue.QueueContinuationTokenMicrosoft.WindowsAzure.Storage.Queue.QueueContinuationToken

A QueueContinuationToken returned by a previous listing operation.

options
Type: Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue::QueueRequestOptions^Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue.QueueRequestOptions

A QueueRequestOptions object that specifies additional options for the request.

operationContext
Type: Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage::OperationContext^Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage.OperationContext

An OperationContext object that represents the context for the current operation.

Return to top