Microsoft.Protocols.TestTools.StackSdk.WsDiscovery.Transport.UdpSender.Start C# (CSharp) Méthode

Start() public méthode

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