OfficeLocations property

PropertyDefinition OfficeLocations
getter/setter pair
Defines the OfficeLocations property.

Implementation

static PropertyDefinition OfficeLocations =
    new ComplexPropertyDefinition<AttributedStringCollection>.withUriAndFlags(
        XmlElementNames.OfficeLocations,
        _PersonaSchemaFieldUris.OfficeLocations,
        [
          PropertyDefinitionFlags.AutoInstantiateOnRead,
          PropertyDefinitionFlags.CanSet,
          PropertyDefinitionFlags.CanUpdate,
          PropertyDefinitionFlags.CanDelete,
          PropertyDefinitionFlags.CanFind
        ],
        ExchangeVersion.Exchange2013_SP1, () {
  return new AttributedStringCollection();
});