Body property

PropertyDefinition Body
getter/setter pair
Defines the Body property.

Implementation

static PropertyDefinition Body = new ComplexPropertyDefinition<MessageBody>.withUriAndFlags(
    XmlElementNames.Body,
    _ItemSchemaFieldUris.Body,
    [
      PropertyDefinitionFlags.CanSet,
      PropertyDefinitionFlags.CanUpdate,
      PropertyDefinitionFlags.CanDelete
    ],
    ExchangeVersion.Exchange2007_SP1, () {
  return new MessageBody();
});