Socket.Receive(byte[] data) : Socket « System.Net.Sockets « C# / C Sharp by API






Socket.Receive(byte[] data)

  


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

class MainClass
{
   public static void Main()
   {
      IPEndPoint ip = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 9999);

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

      try
      {
         server.Connect(ip);
      } catch (SocketException e){
         Console.WriteLine("Unable to connect to server.");
         return;
      }

      byte[] data = new byte[1024];
      int receivedDataLength = server.Receive(data);
      string stringData = Encoding.ASCII.GetString(data, 0, receivedDataLength);
      Console.WriteLine(stringData);

      server.Shutdown(SocketShutdown.Both);
      server.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.Connected
7.Socket.Listen
8.Socket.LocalEndPoint
9.Socket.ProtocolType
10.Socket.ReceiveFrom
11.Socket.Send(String stringValue)
12.Socket.Send(data, data.Length, SocketFlags.None)
13.Socket.SocketType
14.Socket.sentTo