Gets a
System.Collections.Generic.List`1 containing
C1.C1Schedule.Appointment objects for the specified DateTime range.
'Declaration
Public Function GetIntervalAppointments( _
ByVal As System.Date, _
ByVal As System.Date, _
ByVal As System.Boolean _
) As System.Collections.Generic.List(Of Appointment)
public System.Collections.Generic.List<Appointment> GetIntervalAppointments(
System.DateTime ,
System.DateTime ,
System.bool
)
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
System.Collections.Generic.List`1 list containing
C1.C1Schedule.Appointment objects for the specified DateTime range.