예제 #1
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <remarks/>
 public void CreateOrUpdateAccountEmailAsync(string ticket, TransitAccountEmail tae) {
     this.CreateOrUpdateAccountEmailAsync(ticket, tae, null);
 }
예제 #2
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <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);
 }
예제 #3
0
파일: Reference.cs 프로젝트: dblock/sncore
 public int CreateOrUpdateAccountEmail(string ticket, TransitAccountEmail tae) {
     object[] results = this.Invoke("CreateOrUpdateAccountEmail", new object[] {
                 ticket,
                 tae});
     return ((int)(results[0]));
 }