Class ContainerResultSegment
- Namespace
- Microsoft.WindowsAzure.Storage.Blob
- Assembly
- Microsoft.WindowsAzure.Storage.dll
Represents a segment of CloudBlobContainer results and contains continuation and pagination information.
public class ContainerResultSegment
- Inheritance
-
ContainerResultSegment
- Inherited Members
Constructors
ContainerResultSegment(IEnumerable<CloudBlobContainer>, BlobContinuationToken)
Creates a new instance of ContainerResultSegment.
public ContainerResultSegment(IEnumerable<CloudBlobContainer> containers, BlobContinuationToken continuationToken)
Parameters
containers
IEnumerable<CloudBlobContainer>An enumerable collection of CloudBlobContainer objects.
continuationToken
BlobContinuationTokenThe BlobContinuationToken used to retrieve the next segment of CloudBlobContainer results.
Properties
ContinuationToken
Gets the continuation token used to retrieve the next segment of CloudBlobContainer results.
public BlobContinuationToken ContinuationToken { get; }
Property Value
- BlobContinuationToken
A BlobContinuationToken object.
Results
Gets an enumerable collection of CloudBlobContainer results.
public IEnumerable<CloudBlobContainer> Results { get; }
Property Value
- IEnumerable<CloudBlobContainer>
An enumerable collection of CloudBlobContainer objects.