Socket: sentTo : Socket « Network « C# / CSharp Tutorial






using System;
using System.Net;
using System.Net.Sockets;
using System.Text;

class MultiSend
{
   public static void Main()
   {
      Socket server = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
      IPEndPoint iep = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 9050);
      
      byte[] data = Encoding.ASCII.GetBytes("This is a test message");
      server.SendTo(data, iep);
      server.Close();
   }
}








33.4.Socket
33.4.1.Socket: AddressFamily, SocketType and ProtocolType
33.4.2.Socket: Blocking and Connected
33.4.3.Bind Socket with an IPEndPoint
33.4.4.Display the connected client IP address
33.4.5.Socket: sentTo