你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

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 });

适用于