Example #1
0
 public QueryCar[] GetAvailableCars(string orderBy, QueryCar car)
 {
     object[] results = this.Invoke("GetAvailableCars", new object[] {
         orderBy,
         car
     });
     return((QueryCar[])(results[0]));
 }
Example #2
0
 /// <remarks/>
 public void GetAvailableCarsAsync(string orderBy, QueryCar car, object userState)
 {
     if ((this.GetAvailableCarsOperationCompleted == null))
     {
         this.GetAvailableCarsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAvailableCarsOperationCompleted);
     }
     this.InvokeAsync("GetAvailableCars", new object[] {
         orderBy,
         car
     }, this.GetAvailableCarsOperationCompleted, userState);
 }
Example #3
0
 /// <remarks/>
 public void GetAvailableCarsAsync(string orderBy, QueryCar car)
 {
     this.GetAvailableCarsAsync(orderBy, car, null);
 }