Example #1
0
 /// <remarks/>
 public void CreateOrUpdatePlacePropertyAsync(string ticket, TransitPlaceProperty p) {
     this.CreateOrUpdatePlacePropertyAsync(ticket, p, null);
 }
Example #2
0
 /// <remarks/>
 public void CreateOrUpdatePlacePropertyAsync(string ticket, TransitPlaceProperty p, object userState) {
     if ((this.CreateOrUpdatePlacePropertyOperationCompleted == null)) {
         this.CreateOrUpdatePlacePropertyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdatePlacePropertyOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdatePlaceProperty", new object[] {
                 ticket,
                 p}, this.CreateOrUpdatePlacePropertyOperationCompleted, userState);
 }
Example #3
0
 public int CreateOrUpdatePlaceProperty(string ticket, TransitPlaceProperty p) {
     object[] results = this.Invoke("CreateOrUpdatePlaceProperty", new object[] {
                 ticket,
                 p});
     return ((int)(results[0]));
 }