Example #1
0
 /// <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);
 }
Example #2
0
 /// <remarks/>
 public System.IAsyncResult BeginAddMsg(LogMessageModel model, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("AddMsg", new object[] {
         model
     }, callback, asyncState));
 }
Example #3
0
 /// <remarks/>
 public void AddMsgAsync(LogMessageModel model)
 {
     this.AddMsgAsync(model, null);
 }
Example #4
0
 public void AddMsg([System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] LogMessageModel model)
 {
     this.Invoke("AddMsg", new object[] {
         model
     });
 }