QueryOperationResponse.GetContinuation 메서드

정의

DataServiceQueryContinuation 다음 결과 페이지를 검색하는 데 사용되는 URI를 포함하는 개체를 가져옵니다.

오버로드

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

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

반품

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

적용 대상