Click or drag to resize
WebServiceAppointmentControllerRemoveRecurrenceExceptions Method (ISchedulerInfo, AppointmentData)
Removes all recurrence exceptions of the specified recurrence master and returns the available appointments.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public IEnumerable<AppointmentData> RemoveRecurrenceExceptions(
	ISchedulerInfo schedulerInfo,
	AppointmentData masterAppointmentData
)

Parameters

schedulerInfo
Type: Kettic.AspNet.ControlsISchedulerInfo
A ISchedulerInfo object which contains the current time period.
masterAppointmentData
Type: Kettic.AspNet.ControlsAppointmentData
A AppointmentData object which is the recurrence master.

Return Value

Type: IEnumerableAppointmentData
Examples
[WebMethod]
public IEnumerable<AppointmentData> RemoveRecurrenceExceptions(SchedulerInfo schedulerInfo, AppointmentData masterAppointmentData)
{
    return Controller.RemoveRecurrenceExceptions(schedulerInfo, masterAppointmentData);
}
See Also