[]
Retrieves the AppointmentList object which contains the full list of Appointment objects in the specified time interval.
public AppointmentList GetOccurrences(DateTime start, DateTime end)
Type | Name | Description |
---|---|---|
DateTime | start | The DateTime value which specifies the start date and time of the interval. |
DateTime | end | The DateTime value which specifies the end date and time of the interval. |
Type | Description |
---|---|
AppointmentList | The AppointmentList object. |
This method will create instances of the Appointment object for recurring appointments if they haven't been created yet.
Retrieves the AppointmentList object which contains the full list of Appointment objects in the specified time interval.
public AppointmentList GetOccurrences(BaseObject groupOwner, string groupBy, DateTime start, DateTime end, bool includePrivateAppointments)
Type | Name | Description |
---|---|---|
BaseObject | groupOwner | The BaseObject object determining the appointment group. |
string | groupBy | The string value determining the type of grouping. |
DateTime | start | The DateTime value which specifies the start date and time of the interval. |
DateTime | end | The DateTime value which specifies the end date and time of the interval. |
bool | includePrivateAppointments | The bool value determining whether to include private appointments. |
Type | Description |
---|---|
AppointmentList | The AppointmentList object. |
This method will create instances of the Appointment object for recurring appointments if they haven't been created yet.
Retrieves the AppointmentList object which contains the list of occurrences of the specified master appointment in the specified time interval.
public AppointmentList GetOccurrences(Appointment appointment, DateTime start, DateTime end)
Type | Name | Description |
---|---|---|
Appointment | appointment | The Appointment object representing the master appointment. |
DateTime | start | The DateTime value which specifies the start date and time of the interval. |
DateTime | end | The DateTime value which specifies the end date and time of the interval. |
Type | Description |
---|---|
AppointmentList | The AppointmentList object. |
This method will create instances of the Appointment object for recurring appointments if they haven't been created yet.