NetworkInterface: GetAllNetworkInterfaces : NetworkInterface « Network « C# / C Sharp






NetworkInterface: GetAllNetworkInterfaces

 

using System;
using System.Net.NetworkInformation;

class MainClass {
    static void Main() {
        if (NetworkInterface.GetIsNetworkAvailable()) {
            NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces();
            foreach (NetworkInterface ni in interfaces) {
                Console.WriteLine("Interface Name: {0}", ni.Name);
            }
        } else {
            Console.WriteLine("No network available.");
        }
    }
}

 








Related examples in the same category

1.NetworkInterface: GetIPProperties
2.NetworkInterface: GetIPv4Statistics
3.NetworkInterface: GetPhysicalAddress
4.NetworkInterface: OperationalStatus
5.NetworkInterface: NetworkAvailabilityChanged event
6.NetworkInterface:NetworkAddressChanged event
7.NetworkInterface: Name
8.NetworkInterface: Description
9.NetworkInterface: Id
10.NetworkInterface: NetworkInterfaceType
11.NetworkInterface: Speed