QueryOperationResponse.GetContinuation メソッド

定義

次の結果ページを取得するために使用する URI を含む DataServiceQueryContinuation オブジェクトを取得します。

オーバーロード

GetContinuation()

次の結果ページを取得するために使用する URI を含む DataServiceQueryContinuation オブジェクトを取得します。

GetContinuation(IEnumerable)

指定したコレクション内の関連エンティティの次のページを取得するために使用する URI を含む DataServiceQueryContinuation オブジェクトを取得します。

GetContinuation<T>(IEnumerable<T>)

指定したコレクション内の関連エンティティの次のページを取得するために使用する URI を含む DataServiceQueryContinuation<T> オブジェクトを取得します。

GetContinuation()

次の結果ページを取得するために使用する URI を含む DataServiceQueryContinuation オブジェクトを取得します。

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)

指定したコレクション内の関連エンティティの次のページを取得するために使用する URI を含む DataServiceQueryContinuation オブジェクトを取得します。

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

指定したコレクション内の関連エンティティの次のページを取得するために使用する URI を含む DataServiceQueryContinuation<T> オブジェクトを取得します。

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>

読み込まれる関連オブジェクトのコレクション。

戻り値

コレクションの次のページを指す連結オブジェクト。

適用対象