Socket: AddressFamily, SocketType and ProtocolType : Socket « Network « C# / CSharp Tutorial






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

class MainClass
{
   public static void Main()
   {
      IPAddress ia = IPAddress.Parse("127.0.0.1");
      IPEndPoint ie = new IPEndPoint(ia, 8000);

      Socket test = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);

      Console.WriteLine("AddressFamily: {0}",test.AddressFamily);
      Console.WriteLine("SocketType: {0}",test.SocketType);
      Console.WriteLine("ProtocolType: {0}",test.ProtocolType);


      test.Close();
   }
}
AddressFamily: InterNetwork
SocketType: Stream
ProtocolType: Tcp








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