예제 #1
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <remarks/>
 public void CreateOrUpdateRefererAccountAsync(string ticket, TransitRefererAccount refererhostaccount) {
     this.CreateOrUpdateRefererAccountAsync(ticket, refererhostaccount, null);
 }
예제 #2
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <remarks/>
 public void CreateOrUpdateRefererAccountAsync(string ticket, TransitRefererAccount refererhostaccount, object userState) {
     if ((this.CreateOrUpdateRefererAccountOperationCompleted == null)) {
         this.CreateOrUpdateRefererAccountOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateRefererAccountOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateRefererAccount", new object[] {
                 ticket,
                 refererhostaccount}, this.CreateOrUpdateRefererAccountOperationCompleted, userState);
 }
예제 #3
0
파일: Reference.cs 프로젝트: dblock/sncore
 public int CreateOrUpdateRefererAccount(string ticket, TransitRefererAccount refererhostaccount) {
     object[] results = this.Invoke("CreateOrUpdateRefererAccount", new object[] {
                 ticket,
                 refererhostaccount});
     return ((int)(results[0]));
 }