示例#1
0
        private System.IAsyncResult OnBeginApplyMatrixEntity(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            int conferenceID = ((int)(inValues[0]));

            ConferenceModel.ConferenceMatrixWebservice.ConferenceMaxtrixApplyEntity conferenceMaxtrixApplyEntity = ((ConferenceModel.ConferenceMatrixWebservice.ConferenceMaxtrixApplyEntity)(inValues[1]));
            return(this.BeginApplyMatrixEntity(conferenceID, conferenceMaxtrixApplyEntity, callback, asyncState));
        }
示例#2
0
 public void ApplyMatrixEntityAsync(int conferenceID, ConferenceModel.ConferenceMatrixWebservice.ConferenceMaxtrixApplyEntity conferenceMaxtrixApplyEntity, object userState)
 {
     if ((this.onBeginApplyMatrixEntityDelegate == null))
     {
         this.onBeginApplyMatrixEntityDelegate = new BeginOperationDelegate(this.OnBeginApplyMatrixEntity);
     }
     if ((this.onEndApplyMatrixEntityDelegate == null))
     {
         this.onEndApplyMatrixEntityDelegate = new EndOperationDelegate(this.OnEndApplyMatrixEntity);
     }
     if ((this.onApplyMatrixEntityCompletedDelegate == null))
     {
         this.onApplyMatrixEntityCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnApplyMatrixEntityCompleted);
     }
     base.InvokeAsync(this.onBeginApplyMatrixEntityDelegate, new object[] {
         conferenceID,
         conferenceMaxtrixApplyEntity
     }, this.onEndApplyMatrixEntityDelegate, this.onApplyMatrixEntityCompletedDelegate, userState);
 }
示例#3
0
 public void ApplyMatrixEntityAsync(int conferenceID, ConferenceModel.ConferenceMatrixWebservice.ConferenceMaxtrixApplyEntity conferenceMaxtrixApplyEntity)
 {
     this.ApplyMatrixEntityAsync(conferenceID, conferenceMaxtrixApplyEntity, null);
 }
示例#4
0
 public System.IAsyncResult BeginApplyMatrixEntity(int conferenceID, ConferenceModel.ConferenceMatrixWebservice.ConferenceMaxtrixApplyEntity conferenceMaxtrixApplyEntity, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginApplyMatrixEntity(conferenceID, conferenceMaxtrixApplyEntity, callback, asyncState));
 }
示例#5
0
 public void ApplyMatrixEntity(int conferenceID, ConferenceModel.ConferenceMatrixWebservice.ConferenceMaxtrixApplyEntity conferenceMaxtrixApplyEntity)
 {
     base.Channel.ApplyMatrixEntity(conferenceID, conferenceMaxtrixApplyEntity);
 }