示例#1
0
 /// <remarks/>
 public void CreateOrUpdateAccountBlogAsync(string ticket, TransitAccountBlog blog) {
     this.CreateOrUpdateAccountBlogAsync(ticket, blog, null);
 }
示例#2
0
 /// <remarks/>
 public void CreateOrUpdateAccountBlogAsync(string ticket, TransitAccountBlog blog, object userState) {
     if ((this.CreateOrUpdateAccountBlogOperationCompleted == null)) {
         this.CreateOrUpdateAccountBlogOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateAccountBlogOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateAccountBlog", new object[] {
                 ticket,
                 blog}, this.CreateOrUpdateAccountBlogOperationCompleted, userState);
 }
示例#3
0
 public int CreateOrUpdateAccountBlog(string ticket, TransitAccountBlog blog) {
     object[] results = this.Invoke("CreateOrUpdateAccountBlog", new object[] {
                 ticket,
                 blog});
     return ((int)(results[0]));
 }