Beispiel #1
0
 public System.IAsyncResult BeginDeleteAttachment(CCWFM.AssistanceService.TblAttachment row, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = row;
     System.IAsyncResult _result = base.BeginInvoke("DeleteAttachment", _args, callback, asyncState);
     return(_result);
 }
Beispiel #2
0
 public void DeleteAttachmentAsync(CCWFM.AssistanceService.TblAttachment row, object userState)
 {
     if ((this.onBeginDeleteAttachmentDelegate == null))
     {
         this.onBeginDeleteAttachmentDelegate = new BeginOperationDelegate(this.OnBeginDeleteAttachment);
     }
     if ((this.onEndDeleteAttachmentDelegate == null))
     {
         this.onEndDeleteAttachmentDelegate = new EndOperationDelegate(this.OnEndDeleteAttachment);
     }
     if ((this.onDeleteAttachmentCompletedDelegate == null))
     {
         this.onDeleteAttachmentCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnDeleteAttachmentCompleted);
     }
     base.InvokeAsync(this.onBeginDeleteAttachmentDelegate, new object[] {
         row
     }, this.onEndDeleteAttachmentDelegate, this.onDeleteAttachmentCompletedDelegate, userState);
 }
Beispiel #3
0
 public void DeleteAttachmentAsync(CCWFM.AssistanceService.TblAttachment row)
 {
     this.DeleteAttachmentAsync(row, null);
 }
Beispiel #4
0
 private System.IAsyncResult OnBeginDeleteAttachment(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     CCWFM.AssistanceService.TblAttachment row = ((CCWFM.AssistanceService.TblAttachment)(inValues[0]));
     return(((CCWFM.AssistanceService.AssistanceService)(this)).BeginDeleteAttachment(row, callback, asyncState));
 }
Beispiel #5
0
 System.IAsyncResult CCWFM.AssistanceService.AssistanceService.BeginDeleteAttachment(CCWFM.AssistanceService.TblAttachment row, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginDeleteAttachment(row, callback, asyncState));
 }