Socket.Bind(IPEndPoint ip) : Socket « System.Net.Sockets « C# / C Sharp by API






Socket.Bind(IPEndPoint ip)

  

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

class MainClass
{
   public static void Main()
   {
      IPEndPoint ip = new IPEndPoint(IPAddress.Any,9999);
      Socket socket = new Socket(AddressFamily.InterNetwork,SocketType.Stream, ProtocolType.Tcp);

      socket.Bind(ip);
      socket.Listen(10);
      Console.WriteLine("Waiting for a client...");
      Socket client = socket.Accept();
      IPEndPoint clientep =(IPEndPoint)client.RemoteEndPoint;
      Console.WriteLine("Connected with {0} at port {1}",clientep.Address, clientep.Port);
      
      string welcome = "Welcome";
      byte[] data = new byte[1024];
      data = Encoding.ASCII.GetBytes(welcome);
      client.Send(data, data.Length,SocketFlags.None);

      Console.WriteLine("Disconnected from {0}",clientep.Address);
      client.Close();
      socket.Close();
   }
}

   
    
  








Related examples in the same category

1.new Socket( AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp )
2.Socket.AddressFamily
3.Socket.Blocking
4.Socket.Connect(IPEndPoint ip)
5.Socket.Connected
6.Socket.Listen
7.Socket.LocalEndPoint
8.Socket.ProtocolType
9.Socket.Receive(byte[] data)
10.Socket.ReceiveFrom
11.Socket.Send(String stringValue)
12.Socket.Send(data, data.Length, SocketFlags.None)
13.Socket.SocketType
14.Socket.sentTo