This topic has not yet been rated - Rate this topic

TcpClient Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Provides client connections for TCP network services.

System.Object
  System.Net.Sockets.TcpClient

Namespace:  System.Net.Sockets
Assembly:  System (in System.dll)
public class TcpClient : IDisposable

The TcpClient type exposes the following members.

  Name Description
Public method TcpClient() Initializes a new instance of the TcpClient class.
Public method TcpClient(AddressFamily) Initializes a new instance of the TcpClient class with the specified family.
Public method TcpClient(IPEndPoint) Initializes a new instance of the TcpClient class and binds it to the specified local endpoint.
Public method TcpClient(String, Int32) Initializes a new instance of the TcpClient class and connects to the specified port on the specified host.
Top
  Name Description
Protected property Active Gets or set a value that indicates whether a connection has been made.
Public property Available Gets the amount of data that has been received from the network and is available to be read.
Public property Client Gets or sets the underlying Socket.
Public property Connected Gets a value indicating whether the underlying Socket for a TcpClient is connected to a remote host.
Public property ExclusiveAddressUse Gets or sets a Boolean value that specifies whether the TcpClient allows only one client to use a port.
Public property LingerState Gets or sets information about the linger state of the associated socket.
Public property NoDelay Gets or sets a value that disables a delay when send or receive buffers are not full.
Public property ReceiveBufferSize Gets or sets the size of the receive buffer.
Public property ReceiveTimeout Gets or sets the amount of time a TcpClient will wait to receive data once a read operation is initiated.
Public property SendBufferSize Gets or sets the size of the send buffer.
Public property SendTimeout Gets or sets the amount of time a TcpClient will wait for a send operation to complete successfully.
Top
  Name Description
Public method BeginConnect(IPAddress, Int32, AsyncCallback, Object) Begins an asynchronous request for a remote host connection. The remote host is specified by an IPAddress and a port number (Int32).
Public method BeginConnect(IPAddress[], Int32, AsyncCallback, Object) Begins an asynchronous request for a remote host connection. The remote host is specified by an IPAddress array and a port number (Int32).
Public method BeginConnect(String, Int32, AsyncCallback, Object) Begins an asynchronous request for a remote host connection. The remote host is specified by a host name (String) and a port number (Int32).
Public method Close Disposes this TcpClient instance and requests that the underlying TCP connection be closed.
Public method Connect(IPEndPoint) Connects the client to a remote TCP host using the specified remote network endpoint.
Public method Connect(IPAddress, Int32) Connects the client to a remote TCP host using the specified IP address and port number.
Public method Connect(IPAddress[], Int32) Connects the client to a remote TCP host using the specified IP addresses and port number.
Public method Connect(String, Int32) Connects the client to the specified port on the specified host.
Public method ConnectAsync(IPAddress, Int32)
Public method ConnectAsync(IPAddress[], Int32)
Public method ConnectAsync(String, Int32)
Protected method Dispose Releases the unmanaged resources used by the TcpClient and optionally releases the managed resources.
Public method EndConnect Asynchronously accepts an incoming connection attempt.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Frees resources used by the TcpClient class. (Overrides Object.Finalize().)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetStream Returns the NetworkStream used to send and receive data.
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Explicit interface implemetation Private method IDisposable.Dispose Infrastructure. Releases all resources used by the TcpClient.
Top

The TcpClient class provides simple methods for connecting, sending, and receiving stream data over a network in synchronous blocking mode.

In order for TcpClient to connect and exchange data, a TcpListener or Socket created with the TCP ProtocolType must be listening for incoming connection requests. You can connect to this listener in one of the following two ways:

  • Create a TcpClient and call one of the three available Connect methods.

  • Create a TcpClient using the host name and port number of the remote host. This constructor will automatically attempt a connection.

Note Note

If you want to send connectionless datagrams in synchronous blocking mode, use the UdpClient class.

Notes to Inheritors

To send and receive data, use the GetStream method to obtain a NetworkStream. Call the Write and Read methods of the NetworkStream to send and receive data with the remote host. Use the Close method to release all resources associated with the TcpClient.

The following code example establishes a TcpClient connection.


static void Connect(String server, String message) 
{
  try 
  {
    // Create a TcpClient.
    // Note, for this client to work you need to have a TcpServer 
    // connected to the same address as specified by the server, port
    // combination.
    Int32 port = 13000;
    TcpClient client = new TcpClient(server, port);

    // Translate the passed message into ASCII and store it as a Byte array.
    Byte[] data = System.Text.Encoding.ASCII.GetBytes(message);         

    // Get a client stream for reading and writing.
   //  Stream stream = client.GetStream();

    NetworkStream stream = client.GetStream();

    // Send the message to the connected TcpServer. 
    stream.Write(data, 0, data.Length);

    Console.WriteLine("Sent: {0}", message);         

    // Receive the TcpServer.response.

    // Buffer to store the response bytes.
    data = new Byte[256];

    // String to store the response ASCII representation.
    String responseData = String.Empty;

    // Read the first batch of the TcpServer response bytes.
    Int32 bytes = stream.Read(data, 0, data.Length);
    responseData = System.Text.Encoding.ASCII.GetString(data, 0, bytes);
    Console.WriteLine("Received: {0}", responseData);         

    // Close everything.
    stream.Close();         
    client.Close();         
  } 
  catch (ArgumentNullException e) 
  {
    Console.WriteLine("ArgumentNullException: {0}", e);
  } 
  catch (SocketException e) 
  {
    Console.WriteLine("SocketException: {0}", e);
  }

  Console.WriteLine("\n Press Enter to continue...");
  Console.Read();
}


.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
  • SocketPermission  

    Permission to establish an outgoing connection or accept an incoming request.

Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)