Table of Contents

Class FileResultSegment

Namespace
Microsoft.WindowsAzure.Storage.File
Assembly
Microsoft.WindowsAzure.Storage.dll

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

public class FileResultSegment
Inheritance
FileResultSegment
Inherited Members

Constructors

FileResultSegment(IEnumerable<IListFileItem>, FileContinuationToken)

Creates in instance of FileResultSegment.

public FileResultSegment(IEnumerable<IListFileItem> files, FileContinuationToken continuationToken)

Parameters

files IEnumerable<IListFileItem>

An enumerable collection of IListFileItem objects.

continuationToken FileContinuationToken

The FileContinuationToken used to retrieve the next segment of IListFileItem results.

Properties

ContinuationToken

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

public FileContinuationToken ContinuationToken { get; }

Property Value

FileContinuationToken

The continuation token.

Results

Gets an enumerable collection of IListFileItem results.

public IEnumerable<IListFileItem> Results { get; }

Property Value

IEnumerable<IListFileItem>

An enumerable collection of results.