PstFolderItems Property
Gets the collection of all items in this folder which are not sub-folders.

Namespace: MailBee.Outlook
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public PstItemCollection Items { get; }

Property Value

Type: PstItemCollection
A PstItemCollection object containing the non-folder items in this folder.
Remarks

This collection includes elements of typed derived from PstItem. This includes PstMessage, PstContact, PstAppointment, etc. Sub-folders of this folders are not included in this list.

To get sub-folders rather than other items like messages, use GetPstSubFolders(Boolean) method.

See Also