CloudBlobClient.ListContainersSegmentedAsync Method (String, BlobContinuationToken)

Windows Runtime Azure Storage Client Library

Returns a result segment containing a collection of containers.

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

Usage

Visual Basic
Dim instance As CloudBlobClient
Dim prefix As String
Dim currentToken As BlobContinuationToken
Dim returnValue As IAsyncOperation(Of ContainerResultSegment)

returnValue = instance.ListContainersSegmentedAsync(prefix, currentToken)

Syntax

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

Parameters

currentToken

A continuation token returned by a previous listing operation.

Return Value

A result segment of containers.

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