Platform SDK: Exchange 2000 Server

Addressee CoClass

[This is preliminary documentation and subject to change.]

Provides address resolution for recipients of messages and meeting requests; also provides access to free/busy information for attendees of meetings.

CLSID
CD000110-8B95-11D1-82DB-00C04FB1625D
ProgID
CDO.Addressee
Type Library
Microsoft CDO for Microsoft Exchange Library
Inproc Server
CDOEX.DLL
Threading Model
Both

Implemented Interfaces

IAddressee

OLE DB Row Access

Remarks

Names and addresses in the Addressee objects are resolved against a list of LDAP servers or contact folder URLs, as listed by the Configuration object. Default LDAP URLs can be read from the account information in Microsoft® Outlook® Express.

Example

The following example uses an Addressee object to get the free/busy status of user12. It uses the LDAP protocol to get directory information from the exsvr3 server.

[Visual Basic]
Dim iAddr    As New CDO.Addressee
Dim freebusy As     String

iAddr.EmailAddress = "user12@exchange.microsoft.com"
iAddr.CheckName ("LDAP://exsvr3")

'get free/busy status in 30 minute intervals from 9:00 am to 5:00 pm
freebusy = iAddr.GetFreeBusy(#7/8/1999 9:00:00 AM#, #7/8/1999 5:00:00 PM#, 30)
Debug.Print (freebusy)