CcRecipients property

EmailAddressCollection CcRecipients
Gets the Likers associated with the message. Gets the list of Cc recipients for the e-mail message.

Implementation

// EmailAddressCollection get Likers =>this.PropertyBag[EmailMessageSchema.Likers];

/// <summary>
/// Gets the list of Cc recipients for the e-mail message.
/// </summary>
EmailAddressCollection get CcRecipients =>
    this.PropertyBag[EmailMessageSchema.CcRecipients]
        as EmailAddressCollection;