Example #1
0
 /// <remarks/>
 public void PlaceOrdersWithReceiptAsync(PlaceOrdersWithReceiptRequest orders, object userState) {
     if ((this.PlaceOrdersWithReceiptOperationCompleted == null)) {
         this.PlaceOrdersWithReceiptOperationCompleted = new System.Threading.SendOrPostCallback(this.OnPlaceOrdersWithReceiptOperationCompleted);
     }
     this.InvokeAsync("PlaceOrdersWithReceipt", new object[] {
                 orders}, this.PlaceOrdersWithReceiptOperationCompleted, userState);
 }
Example #2
0
 /// <remarks/>
 public System.IAsyncResult BeginPlaceOrdersWithReceipt(PlaceOrdersWithReceiptRequest orders, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("PlaceOrdersWithReceipt", new object[] {
                 orders}, callback, asyncState);
 }
Example #3
0
 /// <remarks/>
 public void PlaceOrdersWithReceiptAsync(PlaceOrdersWithReceiptRequest orders) {
     this.PlaceOrdersWithReceiptAsync(orders, null);
 }
Example #4
0
 public PlaceOrdersWithReceiptResponse PlaceOrdersWithReceipt(PlaceOrdersWithReceiptRequest orders) {
     object[] results = this.Invoke("PlaceOrdersWithReceipt", new object[] {
                 orders});
     return ((PlaceOrdersWithReceiptResponse)(results[0]));
 }