CloudQueueClient.ListQueuesSegmentedAsync Method (QueueContinuationToken)

Windows Runtime Azure Storage Client Library

Returns a result segment containing a collection of queues.

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

Usage

Visual Basic
Dim instance As CloudQueueClient
Dim currentToken As QueueContinuationToken
Dim returnValue As IAsyncOperation(Of QueueResultSegment)

returnValue = instance.ListQueuesSegmentedAsync(currentToken)

Syntax

Visual Basic
Public Function ListQueuesSegmentedAsync ( _
	currentToken As QueueContinuationToken _
) As IAsyncOperation(Of QueueResultSegment)
C#
public IAsyncOperation<QueueResultSegment> ListQueuesSegmentedAsync (
	QueueContinuationToken currentToken
)
C++
public:
IAsyncOperation<QueueResultSegment^>^ ListQueuesSegmentedAsync (
	QueueContinuationToken^ currentToken
)
J#
public IAsyncOperation<QueueResultSegment> ListQueuesSegmentedAsync (
	QueueContinuationToken currentToken
)
JScript
public function ListQueuesSegmentedAsync (
	currentToken : QueueContinuationToken
) : IAsyncOperation<QueueResultSegment>

Parameters

currentToken

A QueueContinuationToken token returned by a previous listing operation.

Return Value

A result segment of queues.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also