コード例 #1
0
 /// <remarks/>
 public void GetDataForProtocolAsync(int AAuctionID, int ATypeProtocol, TProtocolAuctionInfo AAuctionsInfo) {
     this.GetDataForProtocolAsync(AAuctionID, ATypeProtocol, AAuctionsInfo, null);
 }
コード例 #2
0
 /// <remarks/>
 public void GetDataForProtocolAsync(int AAuctionID, int ATypeProtocol, TProtocolAuctionInfo AAuctionsInfo, object userState) {
     if ((this.GetDataForProtocolOperationCompleted == null)) {
         this.GetDataForProtocolOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDataForProtocolOperationCompleted);
     }
     this.InvokeAsync("GetDataForProtocol", new object[] {
                 AAuctionID,
                 ATypeProtocol,
                 AAuctionsInfo}, this.GetDataForProtocolOperationCompleted, userState);
 }
コード例 #3
0
 public bool GetDataForProtocol(int AAuctionID, int ATypeProtocol, ref TProtocolAuctionInfo AAuctionsInfo) {
     object[] results = this.Invoke("GetDataForProtocol", new object[] {
                 AAuctionID,
                 ATypeProtocol,
                 AAuctionsInfo});
     AAuctionsInfo = ((TProtocolAuctionInfo)(results[1]));
     return ((bool)(results[0]));
 }