Reputation: 65
How to get the ItemCount for a ListCollection, without actually getting all the list items in SharePoint using SOAP?
Is there a SOAP webservice for that?
Upvotes: 1
Views: 1485
Reputation: 1306
As per SharePoint 2010 SDK, if you want count of all items in the list, SPList.ItemCount would perform faster than SPList.Items.Count.
Upvotes: 0