FeedIterator<T>.HasMoreResults Property

Definition

Tells if there is more results that need to be retrieved from the service

public abstract bool HasMoreResults { get; }
member this.HasMoreResults : bool
Public MustOverride ReadOnly Property HasMoreResults As Boolean

Property Value

Examples

Example on how to fully drain the query results.

QueryDefinition queryDefinition = new QueryDefinition("select c.id From c where c.status = @status")
              .WithParameter("@status", "Failure");
using (FeedIterator<MyItem> feedIterator = this.Container.GetItemQueryIterator<MyItem>(
    queryDefinition))
{
    while (feedIterator.HasMoreResults)
    {
        FeedResponse<MyItem> response = await feedIterator.ReadNextAsync();
        foreach (var item in response)
        {
            Console.WriteLine(item);
        }
    }
}

Applies to