AppointmentCollectionGetAppointmentsEnclosingRange Method |
Searches for all
Appointments that
are fully contained within the specified time range.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic IList<Appointment> GetAppointmentsEnclosingRange(
DateTime rangeStart,
DateTime rangeEnd
)
Public Function GetAppointmentsEnclosingRange (
rangeStart As DateTime,
rangeEnd As DateTime
) As IList(Of Appointment)
public:
IList<Appointment^>^ GetAppointmentsEnclosingRange(
DateTime rangeStart,
DateTime rangeEnd
)
member GetAppointmentsEnclosingRange :
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 are fully contained within the specified time range.
See Also