EwsDownloadItems Method (IEnumerableEwsItem, EwsItemParts) |
Namespace: MailBee.EwsMail
Exception | Condition |
---|---|
MailBeeException | An error occurred and ThrowExceptions is true. |
NotImplementedException | The .NET runtime is .NET Core. |
To get the list of item IDs for downloading you can use DownloadItemIds(FolderId, Boolean) or Search(FolderId, SearchFilter) methods.
This overload lets you utilize Managed EWS API if you need to download only some portion of items in the folder (for instance, to enable paged output). Alternatively, you can download all IDs of all items using DownloadItemIds(FolderId, Boolean) method and then use DownloadItems(IEnumerable<EwsItem>, EwsItemParts) overload to download the requested items.
Note |
---|
This method is not implemented in .NET Core. Use DownloadItemsAsync(IEnumerableEwsItem, EwsItemParts) instead. |