IDataServicePagingProvider.SetContinuationToken Method
Gets the next-page token from the $skiptoken query option in the request URI.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Sub SetContinuationToken ( _
query As IQueryable, _
resourceType As ResourceType, _
continuationToken As Object() _
)
'Usage
Dim instance As IDataServicePagingProvider
Dim query As IQueryable
Dim resourceType As ResourceType
Dim continuationToken As Object()
instance.SetContinuationToken(query, _
resourceType, continuationToken)
void SetContinuationToken(
IQueryable query,
ResourceType resourceType,
Object[] continuationToken
)
void SetContinuationToken(
IQueryable^ query,
ResourceType^ resourceType,
array<Object^>^ continuationToken
)
abstract SetContinuationToken :
query:IQueryable *
resourceType:ResourceType *
continuationToken:Object[] -> unit
function SetContinuationToken(
query : IQueryable,
resourceType : ResourceType,
continuationToken : Object[]
)
Parameters
- query
Type: System.Linq.IQueryable
Query for which the continuation token is being provided.
- resourceType
Type: System.Data.Services.Providers.ResourceType
Resource type of the result on which the $skip token is to be applied.
- continuationToken
Type: array<System.Object[]
Continuation token parsed into primitive type values.
Remarks
The SetContinuationToken method gets the next-page token from the $skiptoken in the request URI, parsed into primitive values, for the provider.