Pagination
Certain API operations return lists of objects. When the number of objects in the list is large, the API will paginate the results.
The Files.com DotNet SDK provides multiple ways to paginate through lists of objects.
Automatic Pagination
The ListAutoPaging method automatically paginates and loads each page into memory.
Manual Pagination
The LoadNextPage/HasNextPage methods allow for manual pagination and loading of each page into memory.
Load All Items
The All method loads all items into memory.