Example #1
0
 //[TestFixtureTearDown]
 public void Stop()
 {
     // stop client
     if (client != null)
     {
         client.Disconnect();
     }
     client = null;
     // stop server
     if (con != null)
     {
         con.Stop();
     }
     con = null;
     g.d("iqfeed teardown");
 }
Example #2
0
 private void IQFeedFrm_FormClosing(object sender, FormClosingEventArgs e)
 {
     Properties.Settings.Default.Save();
     _log.Stop();
     _helper.Stop();
 }