Platform SDK: Exchange 2000 Server

GetRecurringMaster Method

[This is preliminary documentation and subject to change.]

Returns the master recurring appointment for an exception or instance of the master appointment.

[Visual Basic,VBScript]
Function GetRecurringMaster(
  [CalendarLocation as String],
  [UserName as String],
  [Password as String]
  ) As IAppointment
[C++]
HRESULT GetRecurringMaster(
  BSTR CalendarLocation,
  BSTR UserName,
  BSTR Password,
  IAppointment** pVal
  );
[IDL]
HRESULT GetRecurringMaster(
  [in,optional]BSTR CalendarLocation,
  [in,optional]BSTR UserName,
  [in,optional]BSTR Password,
  [out,retval] IAppointment** pVal);
CalendarLocation
The location of the calendar folder.
UserName
A user who has read/write permission to the folder specified by the CalendarLocation parameter.
Password
The user's password.

Remarks

For calendar folders in the private store, the format of the CalendarLocation string is:

"file://./backofficestorage/<domain_name>/<private_store>/<user_name>/calendar/"

If the calendar location is not specified in the method parameters, CDO uses the calendar location from the Configuration object. The following code sets the calendar location field in the Configuration object.

[Visual Basic]
Dim Config    As New Configuration
Config.Fields("CalendarLocation") = "file://./backofficestorage/domain/MBX/user/calendar"
Config.Fields.Update