PhysicalAddresses property

PropertyDefinition PhysicalAddresses
getter/setter pair
Defines the PhysicalAddresses property.

Implementation

static PropertyDefinition PhysicalAddresses =
    new ComplexPropertyDefinition<PhysicalAddressDictionary>.withUriAndFlags(
        XmlElementNames.PhysicalAddresses,
        _ContactSchemaFieldUris.PhysicalAddresses,
        [
          PropertyDefinitionFlags.AutoInstantiateOnRead,
          PropertyDefinitionFlags.CanSet,
          PropertyDefinitionFlags.CanUpdate
        ],
        ExchangeVersion.Exchange2007_SP1, () {
  return new PhysicalAddressDictionary();
});