次の方法で共有


FeedOptions.RequestContinuation プロパティ

定義

Azure Cosmos DB サービスの要求継続トークンを取得または設定します。

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

プロパティ値

要求継続トークン。

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

適用対象