QueryOperationResponse.GetContinuation Method

Definition

Gets a DataServiceQueryContinuation object containing the URI that is used to retrieve the next results page.

Overloads

GetContinuation()

Gets a DataServiceQueryContinuation object containing the URI that is used to retrieve the next results page.

GetContinuation(IEnumerable)

Gets a DataServiceQueryContinuation object containing the URI that is used to retrieve the next page of related entities in the specified collection.

GetContinuation<T>(IEnumerable<T>)

Gets a DataServiceQueryContinuation<T> object that contains the URI that is used to retrieve the next page of related entities in the specified collection.

GetContinuation()

Gets a DataServiceQueryContinuation object containing the URI that is used to retrieve the next results page.

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

Returns

An object containing the URI that is used to return the next results page.

Applies to

GetContinuation(IEnumerable)

Gets a DataServiceQueryContinuation object containing the URI that is used to retrieve the next page of related entities in the specified collection.

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

Parameters

collection
IEnumerable

The collection of related objects being loaded.

Returns

A continuation object that points to the next page for the collection.

Remarks

The GetContinuation method is used to obtain the URI that is used to retrieve the next results page for a nested result.

Specify a null value for collection when the collection is the top-level collection.

Applies to

GetContinuation<T>(IEnumerable<T>)

Gets a DataServiceQueryContinuation<T> object that contains the URI that is used to retrieve the next page of related entities in the specified collection.

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)

Type Parameters

T

The type of the items in the collection.

Parameters

collection
IEnumerable<T>

The collection of related objects being loaded.

Returns

A continuation object that points to the next page for the collection.

Applies to