コード例 #1
0
 /// <remarks/>
 public void GetSummationContendersAsync(int LotID, TSummationContenderRec[] Contenders) {
     this.GetSummationContendersAsync(LotID, Contenders, null);
 }
コード例 #2
0
 /// <remarks/>
 public void GetSummationContendersAsync(int LotID, TSummationContenderRec[] Contenders, object userState) {
     if ((this.GetSummationContendersOperationCompleted == null)) {
         this.GetSummationContendersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSummationContendersOperationCompleted);
     }
     this.InvokeAsync("GetSummationContenders", new object[] {
                 LotID,
                 Contenders}, this.GetSummationContendersOperationCompleted, userState);
 }
コード例 #3
0
 public bool GetSummationContenders(int LotID, ref TSummationContenderRec[] Contenders) {
     object[] results = this.Invoke("GetSummationContenders", new object[] {
                 LotID,
                 Contenders});
     Contenders = ((TSummationContenderRec[])(results[1]));
     return ((bool)(results[0]));
 }