QueryOperationResponse.GetContinuation 方法

定义

获取 DataServiceQueryContinuation 对象,其中包含用于检索下一结果页的 URI。

重载

GetContinuation()

获取 DataServiceQueryContinuation 对象,其中包含用于检索下一结果页的 URI。

GetContinuation(IEnumerable)

获取 DataServiceQueryContinuation 对象,其中包含用于检索指定集合中下一页相关实体的 URI。

GetContinuation<T>(IEnumerable<T>)

获取 DataServiceQueryContinuation<T> 对象,其中包含用于检索指定集合中下一页相关实体的 URI。

GetContinuation()

获取 DataServiceQueryContinuation 对象,其中包含用于检索下一结果页的 URI。

public:
 System::Data::Services::Client::DataServiceQueryContinuation ^ GetContinuation();
public System.Data.Services.Client.DataServiceQueryContinuation GetContinuation ();
member this.GetContinuation : unit -> System.Data.Services.Client.DataServiceQueryContinuation
Public Function GetContinuation () As DataServiceQueryContinuation

返回

一个对象,其中包含用于返回下一结果页的 URI。

适用于

GetContinuation(IEnumerable)

获取 DataServiceQueryContinuation 对象,其中包含用于检索指定集合中下一页相关实体的 URI。

public:
 System::Data::Services::Client::DataServiceQueryContinuation ^ GetContinuation(System::Collections::IEnumerable ^ collection);
public System.Data.Services.Client.DataServiceQueryContinuation GetContinuation (System.Collections.IEnumerable collection);
member this.GetContinuation : System.Collections.IEnumerable -> System.Data.Services.Client.DataServiceQueryContinuation
Public Function GetContinuation (collection As IEnumerable) As DataServiceQueryContinuation

参数

collection
IEnumerable

要加载的相关对象的集合。

返回

指向集合的下一页的延续对象。

注解

GetContinuation 方法用于获取 URI,使用该 URI 可检索嵌套结果的下一结果页。

null当集合是顶级集合时,指定 的值collection

适用于

GetContinuation<T>(IEnumerable<T>)

获取 DataServiceQueryContinuation<T> 对象,其中包含用于检索指定集合中下一页相关实体的 URI。

public:
generic <typename T>
 System::Data::Services::Client::DataServiceQueryContinuation<T> ^ GetContinuation(System::Collections::Generic::IEnumerable<T> ^ collection);
public System.Data.Services.Client.DataServiceQueryContinuation<T> GetContinuation<T> (System.Collections.Generic.IEnumerable<T> collection);
member this.GetContinuation : seq<'T> -> System.Data.Services.Client.DataServiceQueryContinuation<'T>
Public Function GetContinuation(Of T) (collection As IEnumerable(Of T)) As DataServiceQueryContinuation(Of T)

类型参数

T

集合中项的类型。

参数

collection
IEnumerable<T>

要加载的相关对象的集合。

返回

指向集合的下一页的延续对象。

适用于