EwsItemNativeItem Property
Get a reference to EWS Managed API Item representing the given EWS item.

Namespace: MailBee.EwsMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public Item NativeItem { get; }

Property Value

Type: Item
A reference to Item object representing the given item.
Remarks

Unlike NativeMessage or MailBeeMessage, this property is available for all kinds of MS Exchange items (including contacts, appointments, etc).

Depending on how many properties of items you requested to download, so many properties will be set in the returned Item object. For properties not loaded, the corresponding Item object properties will throw exceptions. Usually, you need to pass at least GenericItem flag to Ews.DownloadItem(FolderId, int, EwsItemParts), Ews.DownloadItem(ItemId, EwsItemParts) or any other method accepting EwsItemParts parameter. For instance, if you pass just IdOnly, only item ID will be available in the returned Item objects.

See Also