Example #1
0
 /// <remarks/>
 public void NotifyRiskLevelChangedAsync(RiskLevelChangedInfo info, object userState)
 {
     if ((this.NotifyRiskLevelChangedOperationCompleted == null))
     {
         this.NotifyRiskLevelChangedOperationCompleted = new System.Threading.SendOrPostCallback(this.OnNotifyRiskLevelChangedOperationCompleted);
     }
     this.InvokeAsync("NotifyRiskLevelChanged", new object[] {
         info
     }, this.NotifyRiskLevelChangedOperationCompleted, userState);
 }
Example #2
0
 /// <remarks/>
 public void NotifyRiskLevelChangedAsync(RiskLevelChangedInfo info)
 {
     this.NotifyRiskLevelChangedAsync(info, null);
 }
Example #3
0
 public void NotifyRiskLevelChanged(RiskLevelChangedInfo info)
 {
     this.Invoke("NotifyRiskLevelChanged", new object[] {
         info
     });
 }