다음을 통해 공유


QueryOperationResponse.GetContinuation 메서드

정의

오버로드

GetContinuation()

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

GetContinuation(IEnumerable)

지정된 컬렉션에서 관련 엔터티의 다음 페이지를 검색하는 데 사용되는 URI가 포함된 DataServiceQueryContinuation 개체를 가져옵니다.

GetContinuation<T>(IEnumerable<T>)

지정된 컬렉션에서 관련 엔터티의 다음 페이지를 검색하는 데 사용되는 URI가 포함된 DataServiceQueryContinuation<T> 개체를 가져옵니다.

GetContinuation()

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

public Microsoft.OData.Client.DataServiceQueryContinuation GetContinuation ();
member this.GetContinuation : unit -> Microsoft.OData.Client.DataServiceQueryContinuation
Public Function GetContinuation () As DataServiceQueryContinuation

반환

다음 결과 페이지를 반환하는 데 사용되는 URI가 포함된 개체입니다.

적용 대상

GetContinuation(IEnumerable)

지정된 컬렉션에서 관련 엔터티의 다음 페이지를 검색하는 데 사용되는 URI가 포함된 DataServiceQueryContinuation 개체를 가져옵니다.

public Microsoft.OData.Client.DataServiceQueryContinuation GetContinuation (System.Collections.IEnumerable collection);
member this.GetContinuation : System.Collections.IEnumerable -> Microsoft.OData.Client.DataServiceQueryContinuation
Public Function GetContinuation (collection As IEnumerable) As DataServiceQueryContinuation

매개 변수

collection
IEnumerable

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

반환

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

적용 대상

GetContinuation<T>(IEnumerable<T>)

지정된 컬렉션에서 관련 엔터티의 다음 페이지를 검색하는 데 사용되는 URI가 포함된 DataServiceQueryContinuation<T> 개체를 가져옵니다.

public Microsoft.OData.Client.DataServiceQueryContinuation<T> GetContinuation<T> (System.Collections.Generic.IEnumerable<T> collection);
member this.GetContinuation : seq<'T> -> Microsoft.OData.Client.DataServiceQueryContinuation<'T>
Public Function GetContinuation(Of T) (collection As IEnumerable(Of T)) As DataServiceQueryContinuation(Of T)

형식 매개 변수

T

컬렉션에 있는 항목의 유형입니다.

매개 변수

collection
IEnumerable<T>

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

반환

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

적용 대상