Platform SDK: Exchange 2000 Server |
[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);
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.
Dim Config As New Configuration Config.Fields("CalendarLocation") = "file://./backofficestorage/domain/MBX/user/calendar" Config.Fields.Update