ToRecipients property

EmailAddressCollection ToRecipients
Suppresses the read receipt on the message. Calling this method results in a call to EWS. Gets the list of To recipients for the e-mail message.

Implementation

// void SuppressReadReceipt()
//        {
//            this.ThrowIfThisIsNew();
//
//            new SuppressReadReceipt(this).InternalCreate(null, null);
//        }

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