IDataServicePagingProvider.SetContinuationToken Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the next-page token from the $skiptoken
query option in the request URI.
public:
void SetContinuationToken(System::Linq::IQueryable ^ query, System::Data::Services::Providers::ResourceType ^ resourceType, cli::array <System::Object ^> ^ continuationToken);
public void SetContinuationToken (System.Linq.IQueryable query, System.Data.Services.Providers.ResourceType resourceType, object[] continuationToken);
abstract member SetContinuationToken : System.Linq.IQueryable * System.Data.Services.Providers.ResourceType * obj[] -> unit
Public Sub SetContinuationToken (query As IQueryable, resourceType As ResourceType, continuationToken As Object())
Parameters
- query
- IQueryable
Query for which the continuation token is being provided.
- resourceType
- ResourceType
Resource type of the result on which the $skip
token is to be applied.
- continuationToken
- 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.