Example #1
0
 /// <remarks/>
 public void NotifyAsync(CommonEventStructureType notification, object userState)
 {
     if ((this.NotifyOperationCompleted == null))
     {
         this.NotifyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnNotifyOperationCompleted);
     }
     this.InvokeAsync("Notify", new object[] {
         notification
     }, this.NotifyOperationCompleted, userState);
 }
Example #2
0
 /// <remarks/>
 public void NotifyAsync(CommonEventStructureType notification)
 {
     this.NotifyAsync(notification, null);
 }
Example #3
0
 public void Notify(CommonEventStructureType notification)
 {
     this.Invoke("Notify", new object[] {
         notification
     });
 }