_Account.GetAddressEntryFromID(String) Method
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.
Returns an AddressEntry object that represents the address entry specified by the given entry ID.
public:
Microsoft::Office::Interop::Outlook::AddressEntry ^ GetAddressEntryFromID(System::String ^ ID);
public Microsoft.Office.Interop.Outlook.AddressEntry GetAddressEntryFromID (string ID);
Public Function GetAddressEntryFromID (ID As String) As AddressEntry
Parameters
- ID
- String
Used to identify an address entry that is maintained for the session.
Returns
Returns an AddressEntry that has the ID property that matches the specified ID
.
Remarks
This method is similar to the GetAddressEntryFromID(String) method of the NameSpace object, but has some additional contextual information about which account to use for the look-up. If there are multiple Microsoft Exchange accounts in the current profile, use the GetAddressEntryFromID method for the corresponding account.
The ID property for an AddressEntry is a permanent, unique string identifier that the transport provider assigns when an AddressEntry is created. Outlook maintains a hierarchy of address books for a session, and the address entry that is returned must match the given ID and be in one of the address books.
GetAddressEntryFromID returns an error if no item with the given ID can be found, if no connection is available, or if the user is set to work offline.