/// <remarks/>
 public void storeBlogEntryAsync(string in0, RemoteBlogEntry in1, object userState) {
     if ((this.storeBlogEntryOperationCompleted == null)) {
         this.storeBlogEntryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnstoreBlogEntryOperationCompleted);
     }
     this.InvokeAsync("storeBlogEntry", new object[] {
                                                         in0,
                                                         in1}, this.storeBlogEntryOperationCompleted, userState);
 }
 /// <remarks/>
 public System.IAsyncResult BeginstoreBlogEntry(string in0, RemoteBlogEntry in1, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("storeBlogEntry", new object[] {
                                                                in0,
                                                                in1}, callback, asyncState);
 }
 /// <remarks/>
 public void storeBlogEntryAsync(string in0, RemoteBlogEntry in1) {
     this.storeBlogEntryAsync(in0, in1, null);
 }
 public RemoteBlogEntry storeBlogEntry(string in0, RemoteBlogEntry in1) {
     object[] results = this.Invoke("storeBlogEntry", new object[] {
                                                                       in0,
                                                                       in1});
     return ((RemoteBlogEntry)(results[0]));
 }