Contact.PhysicalAddresses Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an indexed list of physical addresses for the contact.
public:
property Microsoft::Exchange::WebServices::Data::PhysicalAddressDictionary ^ PhysicalAddresses { Microsoft::Exchange::WebServices::Data::PhysicalAddressDictionary ^ get(); };
public Microsoft.Exchange.WebServices.Data.PhysicalAddressDictionary PhysicalAddresses { get; }
Public ReadOnly Property PhysicalAddresses As PhysicalAddressDictionary
Property Value
An indexed list of physical addresses for the contact.
Examples
The following example shows how to set the business address for a contact, where contact represents a Contact object and businessAddress represents a PhysicalAddressEntry object.
contact.PhysicalAddresses[PhysicalAddressKey.Business] = businessAddress;