FeedOptions.RequestContinuation Property

Definition

Gets or sets the request continuation token in the Azure Cosmos DB service.

public string RequestContinuation { get; set; }
member this.RequestContinuation : string with get, set
Public Property RequestContinuation As String

Property Value

The request continuation token.

Examples

// Resume query execution using the continuation from the previous query
var queryable = client.CreateDocumentQuery<Book>(collectionLink, new FeedOptions { RequestContinuation = prevQuery.ResponseContinuation });

Applies to