ResultSegment.HasMoreResults Property
From Storage Client Library NET API
Gets a value indicating whether there are additional results to retrieve.
Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Usage
| Visual Basic |
|---|
Dim instance As ResultSegment(Of TElement) Dim value As Boolean value = instance.HasMoreResults |
Syntax
| Visual Basic |
|---|
Public Property HasMoreResults As Boolean |
| C# |
|---|
public bool HasMoreResults { get; } |
| C++ |
|---|
public: property bool HasMoreResults { bool get (); } |
| J# |
|---|
| JScript |
|---|
Property Value
Type: System.Boolean
True if there are additional results; otherwise, false.
Remarks
It's recommended that you check the value of the ContinuationToken property to determine whether there are more results to be returned from the service, rather than using the HasMoreResults property.
This property indicates whether a result segment is complete. If the operation that returned a result segment provided a page size by specifying the maxResults parameter, and the number of results to be returned was less than the value of maxResults, then HasMoreResults returns false If the operation returning the result segment did not specify a page size and there are more results to retrieve, then HasMoreResults returns true.