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