Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TcpClient Constructor ()

 

Initializes a new instance of the TcpClient class.

Namespace:   System.Net.Sockets
Assembly:  System (in System.dll)

public:
TcpClient()

This constructor creates a new TcpClient and allows the underlying service provider to assign the most appropriate local IP address and port number. You must first call the Connect method before sending and receiving data.

System_CAPS_noteNote

This constructor works only with IPv4 address types.

System_CAPS_noteNote

This member outputs trace information when you enable network tracing in your application. For more information, see Network Tracing in the .NET Framework.

The following code example demonstrates how to use the default constructor to create a new TcpClient.

//Creates a TCPClient using the default constructor.
TcpClient^ tcpClientC = gcnew TcpClient;

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft