Share via


DocumentSearchResponseBase<TResult, TDoc>.ContinuationToken Property

 

Applies To: Microsoft Azure

Gets a continuation token that can be used to fetch the next page of search results from an Azure Search index.

Namespace:   Microsoft.Azure.Search.Models
Assembly:  Microsoft.Azure.Search (in Microsoft.Azure.Search.dll)

Syntax

public SearchContinuationToken ContinuationToken { get; set; }
public:
property SearchContinuationToken^ ContinuationToken {
    SearchContinuationToken^ get();
    void set(SearchContinuationToken^ value);
}
member ContinuationToken : SearchContinuationToken with get, set
Public Property ContinuationToken As SearchContinuationToken

Property Value

Type: Microsoft.Azure.Search.Models.SearchContinuationToken

Remarks

This property will be null unless you request more results than the page size. This can happen either when you do not specify Top and there are more than 50 results (default page size is 50), or when you specify a value greater than 1000 for Top and there are more than 1000 results (maximum page size is 1000). In either case, you can pass the value of this property to the ContinueSearchAsync method to retrieve the next page of results.

See Also

DocumentSearchResponseBase<TResult, TDoc> Class
Microsoft.Azure.Search.Models Namespace

Return to top