Exemple #1
0
 /// <remarks/>
 public void ForumThreadSaveAsync(ForumThread thread, ForumPost firstPost)
 {
     this.ForumThreadSaveAsync(thread, firstPost, null);
 }
Exemple #2
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);
 }
Exemple #3
0
 public ForumThread ForumThreadSave(ForumThread thread, ForumPost firstPost)
 {
     object[] results = this.Invoke("ForumThreadSave", new object[] {
                 thread,
                 firstPost});
     return ((ForumThread)(results[0]));
 }
Exemple #4
0
 /// <remarks/>
 public void ForumPostSaveAsync(ForumPost post)
 {
     this.ForumPostSaveAsync(post, null);
 }
Exemple #5
0
 public ForumPost ForumPostSave(ForumPost post)
 {
     object[] results = this.Invoke("ForumPostSave", new object[] {
                 post});
     return ((ForumPost)(results[0]));
 }
Exemple #6
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);
 }
Exemple #7
0
 /// <remarks/>
 public System.IAsyncResult BeginForumPostSave(ForumPost post, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("ForumPostSave", new object[] {
                 post}, callback, asyncState);
 }