RegisterProperties method

  1. @override
void RegisterProperties()
override
Registers properties.

Implementation

@override
void RegisterProperties() {
  super.RegisterProperties();

  this.RegisterProperty(ItemSchema.ItemClass);
  this.RegisterProperty(ItemSchema.Sensitivity);
  this.RegisterProperty(ItemSchema.Body);
  this.RegisterProperty(ItemSchema.Attachments);
  // TODO restore registrations
//            this.RegisterProperty(ItemSchema.InternetMessageHeaders);
//            this.RegisterProperty(EmailMessageSchema.Sender);
  this.RegisterProperty(EmailMessageSchema.ToRecipients);
  this.RegisterProperty(EmailMessageSchema.CcRecipients);
  this.RegisterProperty(EmailMessageSchema.BccRecipients);
  this.RegisterProperty(EmailMessageSchema.IsReadReceiptRequested);
  this.RegisterProperty(EmailMessageSchema.IsDeliveryReceiptRequested);
  this.RegisterProperty(ResponseObjectSchema.ReferenceItemId);
}