Example #1
0
 /// <remarks/>
 public void storeBlogEntryAsync(string in0, RemoteBlogEntry in1) {
     this.storeBlogEntryAsync(in0, in1, null);
 }
Example #2
0
 /// <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);
 }
Example #3
0
 public RemoteBlogEntry storeBlogEntry(string in0, RemoteBlogEntry in1) {
     object[] results = this.Invoke("storeBlogEntry", new object[] {
                 in0,
                 in1});
     return ((RemoteBlogEntry)(results[0]));
 }