Beispiel #1
0
 /// <remarks/>
 public void CreateOrUpdateAccountEmailAsync(string ticket, TransitAccountEmail tae) {
     this.CreateOrUpdateAccountEmailAsync(ticket, tae, null);
 }
Beispiel #2
0
 /// <remarks/>
 public void CreateOrUpdateAccountEmailAsync(string ticket, TransitAccountEmail tae, object userState) {
     if ((this.CreateOrUpdateAccountEmailOperationCompleted == null)) {
         this.CreateOrUpdateAccountEmailOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateAccountEmailOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateAccountEmail", new object[] {
                 ticket,
                 tae}, this.CreateOrUpdateAccountEmailOperationCompleted, userState);
 }
Beispiel #3
0
 public int CreateOrUpdateAccountEmail(string ticket, TransitAccountEmail tae) {
     object[] results = this.Invoke("CreateOrUpdateAccountEmail", new object[] {
                 ticket,
                 tae});
     return ((int)(results[0]));
 }