[This topic is part of the Microsoft Azure Storage Client Library 1.7, which has been deprecated. See Storage Client Library for the latest version.]
Gets a value indicating whether there are additional results to retrieve. Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
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.BooleanTrue
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.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.