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