DataServiceCollection<T>.Continuation Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets a continuation object that is used to return the next set of paged results.
Namespace: System.Data.Services.Client
Assembly: System.Data.Services.Client (in System.Data.Services.Client.dll)
Syntax
'Declaration
Public Property Continuation As DataServiceQueryContinuation(Of T)
public DataServiceQueryContinuation<T> Continuation { get; set; }
Property Value
Type: System.Data.Services.Client.DataServiceQueryContinuation<T>
A DataServiceQueryContinuation<T> object that contains the URI to return the next set of paged results.
Remarks
The Continuation property returns a link that is used to access the next set of paged results, when paging is enabled in the data service. The LoadNextPartialSetAsync method uses the continuation token returned by the Continuation property. Use the LoadNextPartialSetAsync method to load paged data from the data service.
Version Information
Silverlight
Supported in: 5, 4
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also