CloudQueueClient.ListQueuesSegmentedAsync Method (String, 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 prefix As String
Dim currentToken As QueueContinuationToken
Dim returnValue As IAsyncOperation(Of QueueResultSegment)

returnValue = instance.ListQueuesSegmentedAsync(prefix, currentToken)

Syntax

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

Parameters

prefix

The queue name prefix.

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