Exemple #1
0
 /// <remarks/>
 public void CreateOrUpdateAccountQuotaAsync(string ticket, TransitAccountQuota quota) {
     this.CreateOrUpdateAccountQuotaAsync(ticket, quota, null);
 }
Exemple #2
0
 /// <remarks/>
 public void CreateOrUpdateAccountQuotaAsync(string ticket, TransitAccountQuota quota, object userState) {
     if ((this.CreateOrUpdateAccountQuotaOperationCompleted == null)) {
         this.CreateOrUpdateAccountQuotaOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateAccountQuotaOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateAccountQuota", new object[] {
                 ticket,
                 quota}, this.CreateOrUpdateAccountQuotaOperationCompleted, userState);
 }
Exemple #3
0
 public int CreateOrUpdateAccountQuota(string ticket, TransitAccountQuota quota) {
     object[] results = this.Invoke("CreateOrUpdateAccountQuota", new object[] {
                 ticket,
                 quota});
     return ((int)(results[0]));
 }