Beispiel #1
0
 /// <summary>
 /// Called any time there is a change in our data
 /// </summary>
 /// <param name="msg"></param>
 public void OnStatusNotify(string correlationId, K2BaseSvrClient.ConnectionState newState, string text)
 {
     try
     {
        //this.Invoke(m_UpdateStatusData,correlationId, newState,   text );
     }
     catch (Exception myE)
     {
         //KRTDSupport.KRTDSupport.Instance().Log.Error("OnChange", myE);
     }
 }
Beispiel #2
0
 public void DoUpdateStatusData(string correlationId, K2BaseSvrClient.ConnectionState newState, string text)
 {
     string myInfo = correlationId + ":" + text;
     lstStatus.Items.Add(myInfo);
 }