Version 3.0.1
Changelog
- #300: add
CcRecipients
property toMessage
class by @DavidBrogli - #304: Http Response improvements by @lbuchs
- #307 add example to obtain available fields of a list by @cweiske
- #318 Support for custom curl options by @drml
ClientObjectCollection
class enhancements, introducedgetAll
method by @vgrem
Example: read list items in a large list via getAll
method:
$ctx = (new ClientContext($siteUrl))->withCredentials($credentials);
$list = $ctx->getWeb()->getLists()->getByTitle("--large list title--");
$allItems = $list->getItems()->getAll(5000, function ($returnType){
print("{$returnType->getPageInfo()} items loaded...\n");
})->executeQuery();