Microsoft.Protocols.TestTools.StackSdk.WsDiscovery.Transport.UdpSender.Start C# (CSharp) Method

Start() public method

Start the thread of send message
public Start ( ) : void
return void
        public void Start()
        {
            this.senderThread = new Thread(new ParameterizedThreadStart(this.Send));
            this.isStopped = false;
            this.senderThread.Start();
        }