/// <remarks/> public void AddMsgAsync(LogMessageModel model, object userState) { if ((this.AddMsgOperationCompleted == null)) { this.AddMsgOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddMsgOperationCompleted); } this.InvokeAsync("AddMsg", new object[] { model }, this.AddMsgOperationCompleted, userState); }
/// <remarks/> public System.IAsyncResult BeginAddMsg(LogMessageModel model, System.AsyncCallback callback, object asyncState) { return(this.BeginInvoke("AddMsg", new object[] { model }, callback, asyncState)); }
/// <remarks/> public void AddMsgAsync(LogMessageModel model) { this.AddMsgAsync(model, null); }
public void AddMsg([System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] LogMessageModel model) { this.Invoke("AddMsg", new object[] { model }); }