/// <remarks/> public System.IAsyncResult BeginAppointmentGet(AppointmentGetRequest AppointmentGetRequest, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AppointmentGet", new object[] { AppointmentGetRequest}, callback, asyncState); }
/// <remarks/> public void AppointmentGetAsync(AppointmentGetRequest AppointmentGetRequest) { this.AppointmentGetAsync(AppointmentGetRequest, null); }
/// <remarks/> public void AppointmentGetAsync(AppointmentGetRequest AppointmentGetRequest, object userState) { if ((this.AppointmentGetOperationCompleted == null)) { this.AppointmentGetOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAppointmentGetOperationCompleted); } this.InvokeAsync("AppointmentGet", new object[] { AppointmentGetRequest}, this.AppointmentGetOperationCompleted, userState); }
public AppointmentGetResponse AppointmentGet(AppointmentGetRequest AppointmentGetRequest) { object[] results = this.Invoke("AppointmentGet", new object[] { AppointmentGetRequest}); return ((AppointmentGetResponse)(results[0])); }