Hola usuario de nuestra web, tenemos la respuesta a tu búsqueda, deslízate y la hallarás un poco más abajo.
Ejemplo: comentar enviador en socket C#
// Establish the local endpoint for the socket.IPHostEntry ipHost = Dns.GetHostEntry(Dns.GetHostName());IPAddress ipAddr = ipHost.AddressList[0];IPEndPoint ipEndPoint =newIPEndPoint(ipAddr,11000);// Create a TCP socket.Socket client =newSocket(AddressFamily.InterNetwork,
SocketType.Stream, ProtocolType.Tcp);// Connect the socket to the remote endpoint.
client.Connect(ipEndPoint);// There is a text file test.txt located in the root directory.string fileName ="C:\test.txt";// Send file fileName to remote device
Console.WriteLine("Sending 0 to the host.", fileName);
client.SendFile(fileName);// Release the socket.
client.Shutdown(SocketShutdown.Both);
client.Close();
Sección de Reseñas y Valoraciones
Agradecemos que quieras defender nuestro estudio dejando un comentario o dejando una puntuación te damos las gracias.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)