EwsItem Constructor (String)
Creates a new EwsItem from the specified unique ID.

Namespace: MailBee.EwsMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public EwsItem(
	string uniqueId
)

Parameters

uniqueId
Type: SystemString
Item's string ID. Null reference (Nothing in Visual Basic) not allowed.
Remarks
You will usually use this constructor to build EwsItem objects and their collections which you can then pass to methods like DownloadItems(IEnumerableEwsItem, EwsItemParts). This is useful if you stored the list of item IDs somewhere (e.g. database) and later you need to restore it into a collection of EwsItem objects which you can pass to DownloadItems(IEnumerableEwsItem, EwsItemParts) method.
See Also