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>

로드할 관련 개체의 컬렉션입니다.

반환

컬렉션의 다음 페이지를 가리키는 연속 개체입니다.

적용 대상