Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initiates an asynchronous operation that 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)

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<BlobResultSegment> ListBlobsSegmentedAsync(
	string prefix,
	BlobContinuationToken currentToken,
	CancellationToken cancellationToken
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<BlobResultSegment^>^ ListBlobsSegmentedAsync(
	String^ prefix,
	BlobContinuationToken^ currentToken,
	CancellationToken cancellationToken
)
 
[<DoesServiceRequestAttribute>]
abstract ListBlobsSegmentedAsync : 
        prefix:string *
        currentToken:BlobContinuationToken *
        cancellationToken:CancellationToken -> Task<BlobResultSegment>
[<DoesServiceRequestAttribute>]
override ListBlobsSegmentedAsync : 
        prefix:string *
        currentToken:BlobContinuationToken *
        cancellationToken:CancellationToken -> Task<BlobResultSegment>
 
<DoesServiceRequestAttribute>
Public Overridable Function ListBlobsSegmentedAsync (
	prefix As String,
	currentToken As BlobContinuationToken,
	cancellationToken As CancellationToken
) As Task(Of BlobResultSegment)
Return to top