IPEndPoint.Port Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets or sets the port number of the endpoint.

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

Syntax

'Declaration
Public Property Port As Integer
public int Port { get; set; }

Property Value

Type: System.Int32
An integer value in the range MinPort to MaxPort indicating the port number of the endpoint.

Exceptions

Exception Condition
ArgumentOutOfRangeException

The value that was specified for a set operation is less than MinPort or greater than MaxPort.

Examples

The following example displays the Port property of the IPEndPoint specified.


Dim ipAddr2 As IPAddress = IPAddress.IPv6Loopback
Dim port2 As Integer = 80

Dim endpoint2 As IPEndPoint = new IPEndPoint(ipAddr2,port2)

outputBlock.Text &= "IPEndPoint.Address: "
outputBlock.Text &= endpoint2.Address.ToString()
outputBlock.Text &= vbCrLf

outputBlock.Text &= "IPEndPoint.AddressFamily: "
outputBlock.Text &= endpoint2.AddressFamily
outputBlock.Text &= vbCrLf

outputBlock.Text &= "IPEndPoint.Port: "
outputBlock.Text &= endpoint2.Port
outputBlock.Text &= vbCrLf

outputBlock.Text &= "IPEndPoint.ToString(): "
outputBlock.Text &= endpoint2.ToString()
outputBlock.Text &= vbCrLf

IPAddress ipAddr2 = IPAddress.IPv6Loopback;
int port2 = 80;

IPEndPoint endpoint2 = new IPEndPoint(ipAddr2,port2);

outputBlock.Text += "IPEndPoint.Address: ";
outputBlock.Text += endpoint2.Address;
outputBlock.Text += "\n";

outputBlock.Text += "IPEndPoint.AddressFamily: ";
outputBlock.Text += endpoint2.AddressFamily;
outputBlock.Text += "\n";

outputBlock.Text += "IPEndPoint.Port: ";
outputBlock.Text += endpoint2.Port;
outputBlock.Text += "\n";

outputBlock.Text += "IPEndPoint.ToString(): ";
outputBlock.Text += endpoint2.ToString();
outputBlock.Text += "\n";

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.