'Declaration
Public Function GetIntervalAppointments( _ ByVal start As Date, _ ByVal end As Date, _ ByVal includeAll As Boolean _ ) As List(Of Appointment)
public List<Appointment> GetIntervalAppointments( DateTime start, DateTime end, bool includeAll )
Parameters
- start
- The System.DateTime value representing the beginning of the DateTime range.
- end
- The System.DateTime value representing the end of the DateTime range.
- 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.
Return Value
The List list containing C1.Schedule.Appointment objects for the specified DateTime range.