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






Socket.Connected

  

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("Blocking: {0}", test.Blocking);

      test.Blocking = false;
      Console.WriteLine("new Blocking: {0}",test.Blocking);
      Console.WriteLine("Connected: {0}", test.Connected);

      test.Close();
   }
}

   
    
  








Related examples in the same category

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