ExtendedProperties property

PropertyDefinition ExtendedProperties
getter/setter pair
Defines the ExtendedProperties property.

Implementation

static PropertyDefinition ExtendedProperties =
    ComplexPropertyDefinition<ExtendedPropertyCollection>.withFlags(
        XmlElementNames.ExtendedProperty,
        [
          PropertyDefinitionFlags.AutoInstantiateOnRead,
          PropertyDefinitionFlags.ReuseInstance,
          PropertyDefinitionFlags.CanSet,
          PropertyDefinitionFlags.CanUpdate
        ],
        ExchangeVersion.Exchange2007_SP1, () {
  return new ExtendedPropertyCollection();
});