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