AsterixDisplayAnalyser.RecForwConnection2.StopForwarding C# (CSharp) Метод

StopForwarding() публичный статический Метод

public static StopForwarding ( ) : void
Результат void
        public static void StopForwarding()
        {
            if (ListenForDataThread != null)
            {
                if (RecordingEnabled == false)
                {
                    RequestStop = true;
                    Thread.Sleep(200);
                    if (ListenForDataThread.IsAlive == true)
                    {
                        Cleanup();
                        ListenForDataThread.Abort();
                    }
                }

                ForwardingEnabled = false;
                if (tx_sock != null)
                    tx_sock.Close();
            }
        }

Usage Example

Пример #1
0
 private void checkBoxF2_CheckedChanged(object sender, EventArgs e)
 {
     if (this.checkBoxF2.Checked == true)
     {
         if (RecForwConnection2.StartForward(
                 //Source parameters (always passed in, however the connection manager will use it just in the case the
                 // connection is not active already)
                 IPAddress.Parse(this.listBoxLocalAddr.Items[1].ToString()),
                 IPAddress.Parse(this.listBoxIPAddress.Items[1].ToString()),
                 int.Parse(this.listBoxPort.Items[1].ToString()),
                 // Forward parameters
                 IPAddress.Parse(this.listBoxForwardingInterface.Items[1].ToString()),
                 IPAddress.Parse(this.listBoxForwardingMulticast.Items[1].ToString()),
                 int.Parse(this.listBoxForwardingPort.Items[1].ToString())) == false)
         {
             this.checkBoxF2.Checked = false;
         }
         else
         {
             this.progressBarF2.Visible = true;
         }
     }
     else
     {
         RecForwConnection2.StopForwarding();
         this.progressBarF2.Visible = false;
     }
 }