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