IPEndPoint.AddressFamily Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the Internet Protocol (IP) address family.
Assembly: System.Net (in System.Net.dll)
The AddressFamily indicates the address family for an instance of the IPEndPoint class.
The following example displays the AddressFamily property of the IPEndPoint specified.
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";
Show: