AppointmentCollectionGetAppointmentsInRange Method |
Searches for all
Appointments that
overlap with the specified time range and returns a generic IList containing them.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic IList<Appointment> GetAppointmentsInRange(
DateTime rangeStart,
DateTime rangeEnd
)
Public Function GetAppointmentsInRange (
rangeStart As DateTime,
rangeEnd As DateTime
) As IList(Of Appointment)
public:
IList<Appointment^>^ GetAppointmentsInRange(
DateTime rangeStart,
DateTime rangeEnd
)
member GetAppointmentsInRange :
rangeStart : DateTime *
rangeEnd : DateTime -> IList<Appointment>
Parameters
- rangeStart
- Type: SystemDateTime
The start of the time range.
- rangeEnd
- Type: SystemDateTime
The end of the time range.
Return Value
Type:
IListAppointment
A generic IList containing the
Appointments
that overlap with the specified time range.
See Also