QueryOperationResponse.GetContinuation 方法

定義

取得 DataServiceQueryContinuation 一個包含 URI 的物件,用來取得下一個結果頁面。

多載

名稱 Description
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>

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

傳回

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

適用於