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 currentToken As BlobContinuationToken
Dim returnValue As IAsyncOperation(Of ContainerResultSegment)
returnValue = instance.ListContainersSegmentedAsync(currentToken) |
Syntax
Visual Basic |
---|
Public Function ListContainersSegmentedAsync ( _
currentToken As BlobContinuationToken _
) As IAsyncOperation(Of ContainerResultSegment) |
C# |
---|
public IAsyncOperation<ContainerResultSegment> ListContainersSegmentedAsync (
BlobContinuationToken currentToken
) |
C++ |
---|
public:
IAsyncOperation<ContainerResultSegment^>^ ListContainersSegmentedAsync (
BlobContinuationToken^ currentToken
) |
J# |
---|
public IAsyncOperation<ContainerResultSegment> ListContainersSegmentedAsync (
BlobContinuationToken currentToken
) |
JScript |
---|
public function ListContainersSegmentedAsync (
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
See Also