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 (AddressFamily)

 

Initializes a new instance of the TcpClient class with the specified family.

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

public:
TcpClient(
	AddressFamily family
)

Parameters

family
Type: System.Net.Sockets::AddressFamily

The AddressFamily of the IP protocol.

Exception Condition
ArgumentException

The family parameter is not equal to AddressFamily.InterNetwork

-or-

The family parameter is not equal to AddressFamily.InterNetworkV6

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 create an instance of the TcpClient class.

TcpClient^ tcpClientD = gcnew TcpClient( AddressFamily::InterNetwork );

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