NetworkInterface.GetIPProperties() : NetworkInterface « System.Net.NetworkInformation « C# / C Sharp by API






NetworkInterface.GetIPProperties()

  

using System;
using System.Net.NetworkInformation;

class MainClass {
    static void Main() {
        if (NetworkInterface.GetIsNetworkAvailable()) {
            NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces();
            foreach (NetworkInterface ni in interfaces) {
                foreach (UnicastIPAddressInformation addr in ni.GetIPProperties().UnicastAddresses) {
                    Console.WriteLine("         - {0} (lease expires {1})", addr.Address, DateTime.Now + new TimeSpan(0, 0, (int)addr.DhcpLeaseLifetime));
                }
            }
        } else {
            Console.WriteLine("No network available.");
        }
    }
}

   
    
  








Related examples in the same category

1.NetworkInterface.GetIPv4Statistics()
2.NetworkInterface.GetIsNetworkAvailable
3.NetworkInterface.GetPhysicalAddress
4.NetworkInterface.NetworkInterfaceType
5.NetworkInterface.OperationalStatus
6.NetworkInterface.Speed