ListItemCollectionPosition class
SharePoint Online
Specifies the information required to get the next page of data for a list view.
System.Object
Microsoft.SharePoint.Client.ClientValueObject
Microsoft.SharePoint.Client.ListItemCollectionPosition
Microsoft.SharePoint.Client.ClientValueObject
Microsoft.SharePoint.Client.ListItemCollectionPosition
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client (in Microsoft.SharePoint.Client.dll)
This code example displays titles, two at a time, from the list of announcements on the specified site.
using System; using Microsoft.SharePoint.Client; namespace Microsoft.SDK.SharePointFoundation.Samples { class ListItemCollectionPositionExample { static void Main() { string siteUrl = "http://MyServer/sites/MySiteCollection"; ClientContext clientContext = new ClientContext(siteUrl); Web site = clientContext.Web; List targetList = site.Lists.GetByTitle("Announcements"); CamlQuery query = new CamlQuery(); query.ViewXml = "<View><ViewFields><FieldRef Name='Title'/></ViewFields><RowLimit>2</RowLimit></View>"; ListItemCollection collListItem = targetList.GetItems(query); clientContext.Load(collListItem); clientContext.ExecuteQuery(); string msg = "Titles, two at a time:\n"; foreach (ListItem myListItem in collListItem) msg += "\nTitle=" + myListItem["Title"]; Console.WriteLine(msg); ListItemCollectionPosition position = collListItem.ListItemCollectionPosition; do { msg = ""; query.ListItemCollectionPosition = position; collListItem = targetList.GetItems(query); clientContext.Load(collListItem); clientContext.ExecuteQuery(); position = collListItem.ListItemCollectionPosition; foreach (ListItem myListItem in collListItem) msg += "\nTitle=" + myListItem["Title"]; Console.WriteLine(msg); } while (position != null); } } }
Show: