GetAllNetworkInterfaces Method
.NET Framework Class Library
NetworkInterface..::.GetAllNetworkInterfaces Method

Returns objects that describe the network interfaces on the local computer.

Namespace:  System.Net.NetworkInformation
Assembly:  System (in System.dll)
Visual Basic (Declaration)
Public Shared Function GetAllNetworkInterfaces As NetworkInterface()
Visual Basic (Usage)
Dim returnValue As NetworkInterface()

returnValue = NetworkInterface.GetAllNetworkInterfaces()
C#
public static NetworkInterface[] GetAllNetworkInterfaces()
Visual C++
public:
static array<NetworkInterface^>^ GetAllNetworkInterfaces()
JScript
public static function GetAllNetworkInterfaces() : NetworkInterface[]

Return Value

Type: array<System.Net.NetworkInformation..::.NetworkInterface>[]()[]
A NetworkInterface array that contains objects that describe the available network interfaces, or an empty array if no interfaces are detected.
ExceptionCondition
NetworkInformationException

A Windows system function call failed.

The network interfaces on a computer provide network connectivity. Network interfaces are also known as network adapters.

The following code example displays Domain Name Service (DNS) configuration information for the local computer's network adapters.

Visual Basic
Public Shared Sub DisplayDnsConfiguration() 
    Dim adapters As NetworkInterface() = NetworkInterface.GetAllNetworkInterfaces()
    Dim adapter As NetworkInterface
    For Each adapter In  adapters
        Dim properties As IPInterfaceProperties = adapter.GetIPProperties()
        Console.WriteLine(adapter.Description)
        Console.WriteLine("  DNS suffix................................. :{0}", properties.DnsSuffix)
        Console.WriteLine("  DNS enabled ............................. : {0}", properties.IsDnsEnabled)
        Console.WriteLine("  Dynamically configured DNS .............. : {0}", properties.IsDynamicDnsEnabled)
    Next adapter

End Sub 'DisplayDnsConfiguration


C#
public static void DisplayDnsConfiguration()
{
    NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces();
    foreach (NetworkInterface adapter in adapters)
    {
        IPInterfaceProperties properties = adapter.GetIPProperties();
        Console.WriteLine(adapter.Description);
        Console.WriteLine("  DNS suffix .............................. : {0}",
            properties.DnsSuffix);
        Console.WriteLine("  DNS enabled ............................. : {0}", 
            properties.IsDnsEnabled);
        Console.WriteLine("  Dynamically configured DNS .............. : {0}", 
            properties.IsDynamicDnsEnabled);
    }
    Console.WriteLine();
}

Visual C++
void DisplayDnsConfiguration()
{
   array<NetworkInterface^>^adapters = NetworkInterface::GetAllNetworkInterfaces();
   System::Collections::IEnumerator^ myEnum10 = adapters->GetEnumerator();
   while ( myEnum10->MoveNext() )
   {
      NetworkInterface ^ adapter = safe_cast<NetworkInterface ^>(myEnum10->Current);
      IPInterfaceProperties ^ properties = adapter->GetIPProperties();
      Console::WriteLine( adapter->Description );
      Console::WriteLine( "  DNS suffix................................. :{0}", 
         properties->DnsSuffix );
      Console::WriteLine( "  DNS enabled ............................. : {0}", 
         properties->IsDnsEnabled );
      Console::WriteLine( "  Dynamically configured DNS .............. : {0}", 
         properties->IsDynamicDnsEnabled );
   }
}

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
Page view tracker