IPAddress::AddressFamily Property
.NET Framework (current version)
Gets the address family of the IP address.
Assembly: System (in System.dll)
Property Value
Type: System.Net.Sockets::AddressFamilyReturns InterNetwork for IPv4 or InterNetworkV6 for IPv6.
Refer to the example in the IPAddress class topic.
// Display the type of address family supported by the server. If the // server is IPv6-enabled this value is: InternNetworkV6. If the server // is also IPv4-enabled there will be an additional value of InterNetwork. Console::WriteLine( "AddressFamily: {0}", curAdd->AddressFamily ); // Display the ScopeId property in case of IPV6 addresses. if ( curAdd->AddressFamily.ToString() == ProtocolFamily::InterNetworkV6.ToString() ) Console::WriteLine( "Scope Id: {0}", curAdd->ScopeId );
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Show: