コード例 #1
0
ファイル: Reference.cs プロジェクト: magenta-aps/cprbroker
 /// <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);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: magenta-aps/cprbroker
 /// <remarks/>
 public void NotifyAsync(CommonEventStructureType notification)
 {
     this.NotifyAsync(notification, null);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: magenta-aps/cprbroker
 public void Notify(CommonEventStructureType notification)
 {
     this.Invoke("Notify", new object[] {
         notification
     });
 }