SearchContinuationToken Class

Definition

Encapsulates state required to continue fetching search results. This is necessary when Azure Cognitive Search cannot fulfill a search request with a single response.

[Newtonsoft.Json.JsonConverter(typeof(Microsoft.Azure.Search.Serialization.SearchContinuationTokenConverter))]
public class SearchContinuationToken
[<Newtonsoft.Json.JsonConverter(typeof(Microsoft.Azure.Search.Serialization.SearchContinuationTokenConverter))>]
type SearchContinuationToken = class
Public Class SearchContinuationToken
Inheritance
SearchContinuationToken
Attributes
Newtonsoft.Json.JsonConverterAttribute

Remarks

This class supports using JsonConvert to convert to and from a JSON payload. This can be useful if you call Azure Cognitive Search from a web application and you need to exchange continuation tokens with a browser or mobile client while paging through search results.

Methods

CreateTestToken(String)

Creates a new SearchContinuationToken for test purposes.

CreateTestToken(String, String, SearchParameters)

Creates a new SearchContinuationToken for test purposes.

Applies to