Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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

Begins 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

 
public virtual ICancellableAsyncResult BeginListQueuesSegmented(
	string prefix,
	QueueListingDetails queueListingDetails,
	Nullable<int> maxResults,
	QueueContinuationToken currentToken,
	QueueRequestOptions options,
	OperationContext operationContext,
	AsyncCallback callback,
	object state
)
 
public:
virtual ICancellableAsyncResult^ BeginListQueuesSegmented(
	String^ prefix,
	QueueListingDetails queueListingDetails,
	Nullable<int> maxResults,
	QueueContinuationToken^ currentToken,
	QueueRequestOptions^ options,
	OperationContext^ operationContext,
	AsyncCallback^ callback,
	Object^ state
)
 
abstract BeginListQueuesSegmented : 
        prefix:string *
        queueListingDetails:QueueListingDetails *
        maxResults:Nullable<int> *
        currentToken:QueueContinuationToken *
        options:QueueRequestOptions *
        operationContext:OperationContext *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
override BeginListQueuesSegmented : 
        prefix:string *
        queueListingDetails:QueueListingDetails *
        maxResults:Nullable<int> *
        currentToken:QueueContinuationToken *
        options:QueueRequestOptions *
        operationContext:OperationContext *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
 
Public Overridable Function BeginListQueuesSegmented (
	prefix As String,
	queueListingDetails As QueueListingDetails,
	maxResults As Nullable(OfInteger),
	currentToken As QueueContinuationToken,
	options As QueueRequestOptions,
	operationContext As OperationContext,
	callback As AsyncCallback,
	state As Object
) As ICancellableAsyncResult

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.

callback
Type: System.AsyncCallbackSystem::AsyncCallback^System.AsyncCallbackSystem.AsyncCallback

An AsyncCallback delegate that will receive notification when the asynchronous operation completes.

state
Type: System.ObjectSystem::Object^System.ObjectSystem.Object

A user-defined object that will be passed to the callback delegate.

Return to top