public void MethodInvoke1Async(ConferenceModel.Studiom_Service.ControlType1 controlType, object userState)
 {
     if ((this.onBeginMethodInvoke1Delegate == null))
     {
         this.onBeginMethodInvoke1Delegate = new BeginOperationDelegate(this.OnBeginMethodInvoke1);
     }
     if ((this.onEndMethodInvoke1Delegate == null))
     {
         this.onEndMethodInvoke1Delegate = new EndOperationDelegate(this.OnEndMethodInvoke1);
     }
     if ((this.onMethodInvoke1CompletedDelegate == null))
     {
         this.onMethodInvoke1CompletedDelegate = new System.Threading.SendOrPostCallback(this.OnMethodInvoke1Completed);
     }
     base.InvokeAsync(this.onBeginMethodInvoke1Delegate, new object[] {
         controlType
     }, this.onEndMethodInvoke1Delegate, this.onMethodInvoke1CompletedDelegate, userState);
 }
 public void MethodInvoke1Async(ConferenceModel.Studiom_Service.ControlType1 controlType)
 {
     this.MethodInvoke1Async(controlType, null);
 }
 public System.IAsyncResult BeginMethodInvoke1(ConferenceModel.Studiom_Service.ControlType1 controlType, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginMethodInvoke1(controlType, callback, asyncState));
 }
 private System.IAsyncResult OnBeginMethodInvoke1(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     ConferenceModel.Studiom_Service.ControlType1 controlType = ((ConferenceModel.Studiom_Service.ControlType1)(inValues[0]));
     return(this.BeginMethodInvoke1(controlType, callback, asyncState));
 }
 public ConferenceModel.Studiom_Service.ReturnDataBase MethodInvoke1(ConferenceModel.Studiom_Service.ControlType1 controlType)
 {
     return(base.Channel.MethodInvoke1(controlType));
 }