Multiple Page Lists in SharePoint

I have a list in SharePoint with several hundred items in it.

I also have code that will return elements from this list,
this will work fine when it returns the values ​​that are on the first page (paragraphs 1-100), but if the element I need to get is on another page in list, it will not return anything.

My question is how to add a list as a whole, and not every page?

EDIT:
I have a web service for

http://[SharePoint site]/_vti_bin/Lists.asmx?op=GetListItems  

then

    ListsWS.Lists lists = new ListWS.Lists();    
    XmlNode items = lists.GetListItems(listName, string.Empty, listQuery, listViewFields, string.Empty, listQueryOptions, null)
    return items;
+3
source share
2 answers

, -, . , , . - , , .

+2

: GetListItems Method; :

VIEWNAME: , GUID... , , viewFields, 100 , rowLimit 1000, 1000 .

, listQueryOptions <RowLimit /> .

+1

Source: https://habr.com/ru/post/1721865/


All Articles