Table of Contents

Class BlobResultSegment

Namespace
Microsoft.WindowsAzure.Storage.Blob
Assembly
Microsoft.WindowsAzure.Storage.dll

Represents a segment of IListBlobItem results, with continuation information for pagination scenarios.

public class BlobResultSegment
Inheritance
BlobResultSegment
Inherited Members

Constructors

BlobResultSegment(IEnumerable<IListBlobItem>, BlobContinuationToken)

Creates a new instance of a BlobResultSegment.

public BlobResultSegment(IEnumerable<IListBlobItem> blobs, BlobContinuationToken continuationToken)

Parameters

blobs IEnumerable<IListBlobItem>

An enumerable collection of IListBlobItem objects.

continuationToken BlobContinuationToken

The BlobContinuationToken used to retrieve the next segment of IListBlobItem results.

Properties

ContinuationToken

Gets the continuation token used to retrieve the next segment of IListBlobItem results. Returns null if there are no more results.

public BlobContinuationToken ContinuationToken { get; }

Property Value

BlobContinuationToken

A BlobContinuationToken object.

Results

Gets an enumerable collection of IListBlobItem results.

public IEnumerable<IListBlobItem> Results { get; }

Property Value

IEnumerable<IListBlobItem>

An enumerable collection of IListBlobItem objects.