Example #1
0
 public int CreateOrUpdateTagWord(string ticket, TransitTagWord tagword)
 {
     object[] results = this.Invoke("CreateOrUpdateTagWord", new object[] {
         ticket,
         tagword
     });
     return((int)(results[0]));
 }
Example #2
0
 /// <remarks/>
 public void CreateOrUpdateTagWordAsync(string ticket, TransitTagWord tagword, object userState)
 {
     if ((this.CreateOrUpdateTagWordOperationCompleted == null))
     {
         this.CreateOrUpdateTagWordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateTagWordOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateTagWord", new object[] {
         ticket,
         tagword
     }, this.CreateOrUpdateTagWordOperationCompleted, userState);
 }
Example #3
0
 /// <remarks/>
 public void CreateOrUpdateTagWordAsync(string ticket, TransitTagWord tagword)
 {
     this.CreateOrUpdateTagWordAsync(ticket, tagword, null);
 }
Example #4
0
 /// <remarks/>
 public void CreateOrUpdateTagWordAsync(string ticket, TransitTagWord tagword, object userState) {
     if ((this.CreateOrUpdateTagWordOperationCompleted == null)) {
         this.CreateOrUpdateTagWordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateTagWordOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateTagWord", new object[] {
                 ticket,
                 tagword}, this.CreateOrUpdateTagWordOperationCompleted, userState);
 }
Example #5
0
 /// <remarks/>
 public void CreateOrUpdateTagWordAsync(string ticket, TransitTagWord tagword) {
     this.CreateOrUpdateTagWordAsync(ticket, tagword, null);
 }
Example #6
0
 public int CreateOrUpdateTagWord(string ticket, TransitTagWord tagword) {
     object[] results = this.Invoke("CreateOrUpdateTagWord", new object[] {
                 ticket,
                 tagword});
     return ((int)(results[0]));
 }