IPv6InterfaceProperties Class
.NET Framework 3.0
Provides information about network interfaces that support Internet Protocol version 6 (IPv6).
Namespace: System.Net.NetworkInformation
Assembly: System (in system.dll)
Assembly: System (in system.dll)
This class provides access to configuration and address information for network interfaces that support IPv6. You do not create instances of this class; they are returned by the GetIPv6Properties method.
For IPV4 properties, see GetIPv4Properties.
The following code example gets an IPInterfaceProperties object and displays its data.
Public Shared Sub DisplayIPv6NetworkInterfaces() Dim nics As NetworkInterface() = NetworkInterface.GetAllNetworkInterfaces() Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties() Console.WriteLine("IPv6 interface information for {0}.{1}", properties.HostName, properties.DomainName) Dim adapter As NetworkInterface For Each adapter In nics ' Only display informatin for interfaces that support IPv6. If adapter.Supports(NetworkInterfaceComponent.IPv6) = False Then GoTo ContinueForEach1 End If Console.WriteLine() Console.WriteLine(adapter.Description) ' Underline the description. Console.WriteLine(String.Empty.PadLeft(adapter.Description.Length, "="c)) Dim adapterProperties As IPInterfaceProperties = adapter.GetIPProperties() ' Try to get the IPv6 interface properties. Dim p As IPv6InterfaceProperties = adapterProperties.GetIPv6Properties() If p Is Nothing Then Console.WriteLine("No IPv6 information is available for this interface.") GoTo ContinueForEach1 End If ' Display the IPv6 specific data. Console.WriteLine(" Index ............................. : {0}", p.Index) Console.WriteLine(" MTU ............................... : {0}", p.Mtu) ContinueForEach1: Next adapter End Sub 'DisplayIPv6NetworkInterfaces
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: