Example #1
0
 /// <remarks/>
 public void CreateOrUpdatePlaceTypeAsync(string ticket, TransitPlaceType type) {
     this.CreateOrUpdatePlaceTypeAsync(ticket, type, null);
 }
Example #2
0
 /// <remarks/>
 public void CreateOrUpdatePlaceTypeAsync(string ticket, TransitPlaceType type, object userState) {
     if ((this.CreateOrUpdatePlaceTypeOperationCompleted == null)) {
         this.CreateOrUpdatePlaceTypeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdatePlaceTypeOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdatePlaceType", new object[] {
                 ticket,
                 type}, this.CreateOrUpdatePlaceTypeOperationCompleted, userState);
 }
Example #3
0
 public int CreateOrUpdatePlaceType(string ticket, TransitPlaceType type) {
     object[] results = this.Invoke("CreateOrUpdatePlaceType", new object[] {
                 ticket,
                 type});
     return ((int)(results[0]));
 }