WebServiceAppointmentControllerCreateRecurrenceException Method (ISchedulerInfo, AppointmentData) |
Creates a recurrence exception with the specified appointment data and returns the available appointments.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic IEnumerable<AppointmentData> CreateRecurrenceException(
ISchedulerInfo schedulerInfo,
AppointmentData recurrenceExceptionData
)
Public Function CreateRecurrenceException (
schedulerInfo As ISchedulerInfo,
recurrenceExceptionData As AppointmentData
) As IEnumerable(Of AppointmentData)
public:
IEnumerable<AppointmentData^>^ CreateRecurrenceException(
ISchedulerInfo^ schedulerInfo,
AppointmentData^ recurrenceExceptionData
)
member CreateRecurrenceException :
schedulerInfo : ISchedulerInfo *
recurrenceExceptionData : AppointmentData -> IEnumerable<AppointmentData>
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);
}
<WebMethod> _
Public Function CreateRecurrenceException(schedulerInfo As SchedulerInfo, recurrenceExceptionData As AppointmentData) As IEnumerable(Of AppointmentData)
Return Controller.CreateRecurrenceException(schedulerInfo, recurrenceExceptionData)
End Function
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also