PhoneNumbers property

PropertyDefinition PhoneNumbers
getter/setter pair
Defines the PhoneNumbers property.

Implementation

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