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。

當集合是最上層集合時,請指定 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>

正在載入的相關物件集合。

傳回

指向集合之下一頁的接續物件。

適用於