Enum RecipientType
- Namespace
- Encryptomatic.MailDex.Lib.PST.Messaging
- Assembly
- MailDex.Lib.dll
https://docs.microsoft.com/en-us/openspecs/exchange_server_protocols/ms-oxomsg/144ae256-8cf2-45a1-a297-221b44f68cfe The PidTagRecipientType property ([MS-OXPROPS] section 2.909) represents the type of a recipient (2) on the message. This property is set on each recipient (2). Valid values for this property are as follows. TABLE 1 Value Meaning 0x00000000 The recipient (2) is the message originator. 0x00000001 The recipient (2) is a primary recipient. 0x00000002 The recipient (2) is a Cc recipient. 0x00000003 The recipient (2) is a Bcc recipient. Additionally, the following flags apply to a resend message. These flags can be combined with the values listed in the previous table by using a bitwise OR. For details about resending a message, see section 3.2.4.5. TABLE 2 Flag Meaning 0x10000000 Indicates that the resend message needs to be delivered to the recipient (1). 0x80000000 Indicates that the resend message does not need to be delivered to the recipient (1).
public enum RecipientType
Fields
Bcc = 3
The recipient is a Bcc recipient.
Cc = 2
The recipient is a Cc recipient.
PrimaryRecipient = 1
The recipient is a primary recipient.
originator = 0
The recipient is the message originator.