Click or drag to resize
WebServiceAppointmentControllerCreateRecurrenceException Method (ISchedulerInfo, AppointmentData)
Creates a recurrence exception with the specified appointment data 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> CreateRecurrenceException(
	ISchedulerInfo schedulerInfo,
	AppointmentData recurrenceExceptionData
)

Parameters

schedulerInfo
Type: Kettic.AspNet.ControlsISchedulerInfo
A ISchedulerInfo object which contains the current time period.
recurrenceExceptionData
Type: Kettic.AspNet.ControlsAppointmentData
A AppointmentData object which contains the exception properties.

Return Value

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