示例#1
0
 /// <remarks/>
 public void ForumThreadSaveAsync(ForumThread thread, ForumPost firstPost, object userState)
 {
     if ((this.ForumThreadSaveOperationCompleted == null)) {
         this.ForumThreadSaveOperationCompleted = new System.Threading.SendOrPostCallback(this.OnForumThreadSaveOperationCompleted);
     }
     this.InvokeAsync("ForumThreadSave", new object[] {
                 thread,
                 firstPost}, this.ForumThreadSaveOperationCompleted, userState);
 }
示例#2
0
 public ForumThread ForumThreadSave(ForumThread thread, ForumPost firstPost)
 {
     object[] results = this.Invoke("ForumThreadSave", new object[] {
                 thread,
                 firstPost});
     return ((ForumThread)(results[0]));
 }
示例#3
0
 /// <remarks/>
 public void ForumThreadSaveAsync(ForumThread thread, ForumPost firstPost)
 {
     this.ForumThreadSaveAsync(thread, firstPost, null);
 }
示例#4
0
 /// <remarks/>
 public System.IAsyncResult BeginForumThreadSave(ForumThread thread, ForumPost firstPost, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("ForumThreadSave", new object[] {
                 thread,
                 firstPost}, callback, asyncState);
 }