PstTaskPstFields Property |
Namespace: MailBee.Outlook
The below are PST fields keys for Task items. 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).
Name | Type |
---|---|
TaskStatus | Int32 |
PercentComplete | Double |
TeamTask | Boolean |
TaskDateCompleted | DateTime |
TaskActualEffort | Int32 |
TaskEstimatedEffort | Int32 |
TaskVersion | Int32 |
TaskComplete | Boolean |
TaskOwner | String |
TaskAssigner | String |
TaskLastUser | String |
TaskOrdinal | Int32 |
TaskFRecurring | Boolean |
TaskRole | String |
TaskOwnership | Int32 |
AcceptanceState | Int32 |
When you get this PST object as MailMessage using GetAsMailMessage method, these fields will be added to the resulting message as "X-Task-" + PstFieldName headers. Example is "X-Task-TaskStatus". Each field value will be converted into a string.