EwsCreatePropSet Method
Creates EWS Managed API PropertySet object.

Namespace: MailBee.EwsMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public PropertySet CreatePropSet(
	EwsItemParts parts
)

Parameters

parts
Type: MailBee.EwsMailEwsItemParts
A set of EWS item parts to be requested for 'download item' operations.

Return Value

Type: PropertySet
A PropertySet instance configured accordingly the specified parameters.
Remarks

This is a helper method for advanced purposes. You can use it with DownloadItems(FolderId, ItemView, bool, PropertySet) and DownloadItem(ItemId, PropertySet) methods when you need to work directly with EWS Managed API types.

Most applications will not use PropertySet objects directly as they can use DownloadItems(FolderId, ItemView, bool, EwsItemParts) and DownloadItem(ItemId, EwsItemParts) overloads which hide PropertySet complexity from the developer.

See Also