[]
Gets a List<T> containing Appointment objects for the specified DateTime range.
public List<Appointment> GetIntervalAppointments(DateTime start, DateTime end, bool includeAll)
Type | Name | Description |
---|---|---|
DateTime | start | The DateTime value representing the beginning of the DateTime range. |
DateTime | end | The DateTime value representing the end of the DateTime range. |
bool | includeAll | Specifies whether the returned list contains all appointments intercepting the specified DateTime range. If this value is False, the returned list will contain only appointments starting within the specified DateTime range. |
Type | Description |
---|---|
List<Appointment> | The List<T> list containing Appointment objects for the specified DateTime range. |