QueryOperationResponse.GetContinuation Method

Definition

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 Microsoft.OData.Client.DataServiceQueryContinuation GetContinuation ();
member this.GetContinuation : unit -> Microsoft.OData.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 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

Parameters

collection
IEnumerable

The collection of related objects being loaded.

Returns

A continuation object that points to the next page for the 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 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)

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