Exemplo n.º 1
0
 //============================================================================
 // MainForm_FormClosing
 //============================================================================
 private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
 {
     AllocLogStream.stopProcessing();
     if (mTCPClient != null)
     {
         mTCPClient.stopListener();
         mTCPClient = null;
     }
 }
Exemplo n.º 2
0
 //============================================================================
 // stopProcessButton_Click
 //============================================================================
 private void stopProcessButton_Click(object sender, EventArgs e)
 {
     AllocLogStream.stopProcessing();
     if (mTCPClient != null)
     {
         mTCPClient.stopListener();
         mTCPClient = null;
     }
     onStopPressed(null, null);
 }