QueryOperationResponse.GetContinuation<T> Method (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.
Namespace: System.Data.Services.Client
Assembly: Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)
Syntax
'Declaration
Public Function GetContinuation(Of T) ( _
collection As IEnumerable(Of T) _
) As DataServiceQueryContinuation(Of T)
'Usage
Dim instance As QueryOperationResponse
Dim collection As IEnumerable(Of T)
Dim returnValue As DataServiceQueryContinuation(Of T)
returnValue = instance.GetContinuation(collection)
public DataServiceQueryContinuation<T> GetContinuation<T>(
IEnumerable<T> collection
)
public:
generic<typename T>
DataServiceQueryContinuation<T>^ GetContinuation(
IEnumerable<T>^ collection
)
member GetContinuation :
collection:IEnumerable<'T> -> DataServiceQueryContinuation<'T>
JScript does not support generic types and methods.
Type Parameters
- T
The type of the items in the collection.
Parameters
- collection
Type: System.Collections.Generic.IEnumerable<T>
The collection of related objects being loaded.
Return Value
Type: System.Data.Services.Client.DataServiceQueryContinuation<T>
A continuation object that points to the next page for the collection.