QueryOperationResponse.GetContinuation Method (IEnumerable)
Gets a DataServiceQueryContinuation object containing 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 ( _
collection As IEnumerable _
) As DataServiceQueryContinuation
'Usage
Dim instance As QueryOperationResponse
Dim collection As IEnumerable
Dim returnValue As DataServiceQueryContinuation
returnValue = instance.GetContinuation(collection)
public DataServiceQueryContinuation GetContinuation(
IEnumerable collection
)
public:
DataServiceQueryContinuation^ GetContinuation(
IEnumerable^ collection
)
member GetContinuation :
collection:IEnumerable -> DataServiceQueryContinuation
public function GetContinuation(
collection : IEnumerable
) : DataServiceQueryContinuation
Parameters
- collection
Type: System.Collections.IEnumerable
The collection of related objects being loaded.
Return Value
Type: System.Data.Services.Client.DataServiceQueryContinuation
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 nulla null reference (Nothing in Visual Basic) value for collection when the collection is the top-level collection.