Table of Contents

Class ShareResultSegment

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

Represents a segment of CloudFileShare results and contains continuation and pagination information.

public class ShareResultSegment
Inheritance
ShareResultSegment
Inherited Members

Constructors

ShareResultSegment(IEnumerable<CloudFileShare>, FileContinuationToken)

Creates an instance of ShareResultSegment.

public ShareResultSegment(IEnumerable<CloudFileShare> shares, FileContinuationToken continuationToken)

Parameters

shares IEnumerable<CloudFileShare>

An enumerable collection of CloudFileShare objects.

continuationToken FileContinuationToken

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

Properties

ContinuationToken

Gets the FileContinuationToken object used to retrieve the next segment of CloudFileShare results.

public FileContinuationToken ContinuationToken { get; }

Property Value

FileContinuationToken

The continuation token.

Results

Gets an enumerable collection of CloudFileShare results.

public IEnumerable<CloudFileShare> Results { get; }

Property Value

IEnumerable<CloudFileShare>

An enumerable collection of results.