Click or drag to resize
WebServiceAppointmentControllerUpdateAppointment Method (ISchedulerInfo, AppointmentData)
Updates the specified appointment 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> UpdateAppointment(
	ISchedulerInfo schedulerInfo,
	AppointmentData appointmentData
)

Parameters

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

Return Value

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