Exemple #1
0
 /// <remarks/>
 public void CreateOrUpdateAccountAttributeAsync(string ticket, TransitAccountAttribute attribute) {
     this.CreateOrUpdateAccountAttributeAsync(ticket, attribute, null);
 }
Exemple #2
0
 /// <remarks/>
 public void CreateOrUpdateAccountAttributeAsync(string ticket, TransitAccountAttribute attribute, object userState) {
     if ((this.CreateOrUpdateAccountAttributeOperationCompleted == null)) {
         this.CreateOrUpdateAccountAttributeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateAccountAttributeOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateAccountAttribute", new object[] {
                 ticket,
                 attribute}, this.CreateOrUpdateAccountAttributeOperationCompleted, userState);
 }
Exemple #3
0
 public int CreateOrUpdateAccountAttribute(string ticket, TransitAccountAttribute attribute) {
     object[] results = this.Invoke("CreateOrUpdateAccountAttribute", new object[] {
                 ticket,
                 attribute});
     return ((int)(results[0]));
 }