0
How to set a timer so that after 5 of sending the command EnvDados
the sending of the command NovoEnvio
, this within the same method?
IPAddress[] IPs = Dns.GetHostAddresses(host);
Socket s = new Socket(
AddressFamily.InterNetwork,
SocketType.Stream,
ProtocolType.Tcp);
s.Connect(IPs[0], port);
// Recebe o Retorno após a conexão
byte[] buffer = new byte[60];
s.Receive(buffer);
// Envia um novo Comando
byte[] EnvDados = System.Text.Encoding.ASCII.GetBytes(ordem + "\n");
s.Send(EnvDados);
// Após 5 segundos enviar novo comando
byte[] NovoEnvio = System.Text.Encoding.ASCII.GetBytes(ordem + "\n");
s.Send(NovoEnvio);
Visual Studio 2012 framework 4.0
– João K. Queiroz
See if you can get some help: http://answall.com/q/30601/101, http://answall.com/q/87293/101, http://answall.com/a/86015/101
– Maniero