Addressee CoClass
Topic Last Modified: 2006-06-13
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 Exchange 2000 Library
Inproc Server
CDOEX.DLL
Threading Model
Both
Implemented Interfaces
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 CoClass. 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.
Dim iAddr As New CDO.Addressee
Dim freebusy As String
iAddr.EmailAddress = "user12@exchange.example.com"
iAddr.CheckName ("LDAP://exsvr3")
' Get free/busy status in 30-minute intervals from 9:00 A.M. to 5:00 P.M.
freebusy = iAddr.GetFreeBusy(#7/8/1999 9:00:00 AM#, #7/8/1999 5:00:00 PM#, 30)
Debug.Print (freebusy)