| IMailCc Property |
Gets the address(es) of others who are to receive this email message ('CC', Carbon Copy header), even tough the content of the message may not be directed at them.
In this collection you can find
MailBox which represent single mailbox, or
MailGroup which represents group of email addresses.
This collection can be modified. May be empty.
Namespace:
Limilabs.Mail
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax IList<MailAddress> Cc { get; }
ReadOnly Property Cc As IList(Of MailAddress)
Get
property IList<MailAddress^>^ Cc {
IList<MailAddress^>^ get ();
}
abstract Cc : IList<MailAddress> with get
Property Value
Type:
IListMailAddressRemarks
You can use LINQ's
Cc.SelectMany(address => address.GetMailboxes())
to retrieve
MailBox list.
See Also