CloudBlobClient.ListBlobsSegmentedAsync Method (String, 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 CloudBlobClient
Dim prefix As String
Dim currentToken As BlobContinuationToken
Dim returnValue As IAsyncOperation(Of BlobResultSegment)

returnValue = instance.ListBlobsSegmentedAsync(prefix, currentToken)

Syntax

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

Parameters

prefix

The container name prefix.

currentToken

The continuation token.

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