| PstItemPstFields Property |
Namespace: MailBee.Outlook
The below are PST fields keys which are not specific to items of concrete PST types (like PstContact). Each key represents a particular property of this PST item. Most values are optional so that you need to check if the particular key exists with ContainsKey(Object) method (Hashtable.ContainsKey).
| Key Name | Type |
|---|---|
| MessageClass | String |
| DisplayName | String |
| AddrType | String |
| EmailAddress | String |
| Comment | String |
| CreationTime | DateTime |
| LastModificationTime | DateTime |
When you get this PST object as MailMessage using GetAsMailMessage method, these fields will be added to the resulting message as "X-Pst-" + PstFieldName headers. Example is "X-Pst-MessageClass". Each field value will be converted into a string.