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.

IPEndPoint::Create Method (SocketAddress^)

 

Creates an endpoint from a socket address.

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

public:
virtual EndPoint^ Create(
	SocketAddress^ socketAddress
) override

Parameters

socketAddress
Type: System.Net::SocketAddress^

The SocketAddress to use for the endpoint.

Return Value

Type: System.Net::EndPoint^

An EndPoint instance using the specified socket address.

Exception Condition
ArgumentException

The AddressFamily of socketAddress is not equal to the AddressFamily of the current instance.

-or-

socketAddress.Size < 8.

The following example uses the specified SocketAddress to create an IPEndPoint.

// Recreate the connection endpoint from the serialized information.
IPEndPoint^ endpoint = gcnew IPEndPoint( (__int64)0,0 );
IPEndPoint^ clonedIPEndPoint = dynamic_cast<IPEndPoint^>(endpoint->Create( socketAddress ));
Console::WriteLine( "clonedIPEndPoint: {0}", clonedIPEndPoint );

Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Return to top
Show:
© 2017 Microsoft