Example #1
0
 /// <remarks/>
 public void CreateOrUpdatePlaceQueueAsync(string ticket, TransitPlaceQueue queue) {
     this.CreateOrUpdatePlaceQueueAsync(ticket, queue, null);
 }
Example #2
0
 /// <remarks/>
 public void CreateOrUpdatePlaceQueueAsync(string ticket, TransitPlaceQueue queue, object userState) {
     if ((this.CreateOrUpdatePlaceQueueOperationCompleted == null)) {
         this.CreateOrUpdatePlaceQueueOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdatePlaceQueueOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdatePlaceQueue", new object[] {
                 ticket,
                 queue}, this.CreateOrUpdatePlaceQueueOperationCompleted, userState);
 }
Example #3
0
 public int CreateOrUpdatePlaceQueue(string ticket, TransitPlaceQueue queue) {
     object[] results = this.Invoke("CreateOrUpdatePlaceQueue", new object[] {
                 ticket,
                 queue});
     return ((int)(results[0]));
 }