i'm trying to add 3 different numbers to a contact using EWS from my
website but doesnt seem to work. if i create the contact with just
one of the numbers it is fine??
contactItem.PhoneNumbers = new PhoneNumberDictionaryEntryType[1];
PhoneNumberDictionaryEntryType phoneEntry = new
PhoneNumberDictionaryEntryType();
phoneEntry.Key = PhoneNumberKeyType.HomePhone;
phoneEntry.Value = "99999999999";
contactItem.PhoneNumbers[0] = phoneEntry;
PhoneNumberDictionaryEntryType phoneEntry2 = new
PhoneNumberDictionaryEntryType();
phoneEntry2.Key = PhoneNumberKeyType.MobilePhone;
phoneEntry2.Value = "1234567890";
contactItem.PhoneNumbers[0] = phoneEntry2;
PhoneNumberDictionaryEntryType phoneEntry3 = new
PhoneNumberDictionaryEntryType();
phoneEntry3.Key = PhoneNumberKeyType.Pager;
phoneEntry3.Value = "3333333333";
contactItem.PhoneNumbers[0] = phoneEntry3;