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






NetworkInterface: Id

 
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("    ID: {0}", ni.Id);
            }
        } 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: GetAllNetworkInterfaces
8.NetworkInterface: Name
9.NetworkInterface: Description
10.NetworkInterface: NetworkInterfaceType
11.NetworkInterface: Speed