CloudBlobDirectory.ListBlobsSegmentedAsync Method (BlobContinuationToken)

Windows Runtime Azure Storage Client Library

Returns a result segment containing a collection of blob items in the container.

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

Usage

Visual Basic
Dim instance As CloudBlobDirectory
Dim currentToken As BlobContinuationToken
Dim returnValue As IAsyncOperation(Of BlobResultSegment)

returnValue = instance.ListBlobsSegmentedAsync(currentToken)

Syntax

Visual Basic
Public Function ListBlobsSegmentedAsync ( _
	currentToken As BlobContinuationToken _
) As IAsyncOperation(Of BlobResultSegment)
C#
public IAsyncOperation<BlobResultSegment> ListBlobsSegmentedAsync (
	BlobContinuationToken currentToken
)
C++
public:
IAsyncOperation<BlobResultSegment^>^ ListBlobsSegmentedAsync (
	BlobContinuationToken^ currentToken
)
J#
public IAsyncOperation<BlobResultSegment> ListBlobsSegmentedAsync (
	BlobContinuationToken currentToken
)
JScript
public function ListBlobsSegmentedAsync (
	currentToken : BlobContinuationToken
) : IAsyncOperation<BlobResultSegment>

Parameters

currentToken

A BlobContinuationToken token returned by a previous listing operation.

Return Value

A result segment containing objects that implement IListBlobItem.

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