Example #1
0
 public System.IAsyncResult BeginSendNotification(IManage.Core.IManageNotificationService.Notification notification, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = notification;
     System.IAsyncResult _result = base.BeginInvoke("SendNotification", _args, callback, asyncState);
     return(_result);
 }
Example #2
0
 public void SendNotificationAsync(IManage.Core.IManageNotificationService.Notification notification, object userState)
 {
     if ((this.onBeginSendNotificationDelegate == null))
     {
         this.onBeginSendNotificationDelegate = new BeginOperationDelegate(this.OnBeginSendNotification);
     }
     if ((this.onEndSendNotificationDelegate == null))
     {
         this.onEndSendNotificationDelegate = new EndOperationDelegate(this.OnEndSendNotification);
     }
     if ((this.onSendNotificationCompletedDelegate == null))
     {
         this.onSendNotificationCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSendNotificationCompleted);
     }
     base.InvokeAsync(this.onBeginSendNotificationDelegate, new object[] {
         notification
     }, this.onEndSendNotificationDelegate, this.onSendNotificationCompletedDelegate, userState);
 }
Example #3
0
 public void SendNotificationAsync(IManage.Core.IManageNotificationService.Notification notification)
 {
     this.SendNotificationAsync(notification, null);
 }
Example #4
0
 private System.IAsyncResult OnBeginSendNotification(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     IManage.Core.IManageNotificationService.Notification notification = ((IManage.Core.IManageNotificationService.Notification)(inValues[0]));
     return(((IManage.Core.IManageNotificationService.INotificationService)(this)).BeginSendNotification(notification, callback, asyncState));
 }
Example #5
0
 System.IAsyncResult IManage.Core.IManageNotificationService.INotificationService.BeginSendNotification(IManage.Core.IManageNotificationService.Notification notification, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginSendNotification(notification, callback, asyncState));
 }