Socket.AddressFamily : Socket « System.Net.Sockets « C# / C Sharp by API






Socket.AddressFamily

  

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();
   }
}

   
    
  








Related examples in the same category

1.new Socket( AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp )
2.Socket.Bind(IPEndPoint ip)
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