Interface ICamlQueryCsomResult
- Namespace
- PnP.Core.Model.SharePoint
- Assembly
- PnP.Core.dll
Result of a CAML query executed via CSOM, see LoadItemsByCamlQueryViaCsomAsync on IList
public interface ICamlQueryCsomResult
Properties
Items
The list items returned by this query. The items are also merged into the list's Items collection.
IReadOnlyList<IListItem> Items { get; }
Property Value
PagingInfo
Paging information to get the next page of data: set this as PagingInfo on the next query. Null when there are no more pages.
string PagingInfo { get; }