예제 #1
0
 /// <remarks/>
 public System.IAsyncResult BeginAppointmentChange(AppointmentChangeRequest AppointmentChangeRequest, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("AppointmentChange", new object[] {
                 AppointmentChangeRequest}, callback, asyncState);
 }
예제 #2
0
 /// <remarks/>
 public void AppointmentChangeAsync(AppointmentChangeRequest AppointmentChangeRequest)
 {
     this.AppointmentChangeAsync(AppointmentChangeRequest, null);
 }
예제 #3
0
 /// <remarks/>
 public void AppointmentChangeAsync(AppointmentChangeRequest AppointmentChangeRequest, object userState)
 {
     if ((this.AppointmentChangeOperationCompleted == null)) {
         this.AppointmentChangeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAppointmentChangeOperationCompleted);
     }
     this.InvokeAsync("AppointmentChange", new object[] {
                 AppointmentChangeRequest}, this.AppointmentChangeOperationCompleted, userState);
 }
예제 #4
0
 public AppointmentChangeResponse AppointmentChange(AppointmentChangeRequest AppointmentChangeRequest)
 {
     object[] results = this.Invoke("AppointmentChange", new object[] {
                 AppointmentChangeRequest});
     return ((AppointmentChangeResponse)(results[0]));
 }