Report information from NetworkInterface: IP address and DHCP Expires (DhcpLeaseLifetime) : NetworkInterface « Network « C# / CSharp Tutorial






using System;
using System.Net.NetworkInformation;

class MainClass
{
    static void Main()
    {
        if (!NetworkInterface.GetIsNetworkAvailable())
           return;

        NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces();

        foreach (NetworkInterface ni in interfaces)
        {

            Console.WriteLine("IP Addresses:");
            foreach (UnicastIPAddressInformation addr in ni.GetIPProperties().UnicastAddresses)
            {
                Console.WriteLine("- {0} (lease expires {1})", addr.Address, DateTime.Now + new TimeSpan(0, 0, (int)addr.DhcpLeaseLifetime));
            }
        }
    }
}
IP Addresses:
IP Addresses:
- 192.168.1.101 (lease expires 26/03/2007 8:28:25 AM)
IP Addresses:
- 127.0.0.1 (lease expires 31/12/1969 5:00:00 PM)








33.34.NetworkInterface
33.34.1.Report information from NetworkInterface: name, description, id, type, speed, status
33.34.2.Report information from NetworkInterface: physical address
33.34.3.Report information from NetworkInterface: network statistics
33.34.4.Report information from NetworkInterface: IP address and DHCP Expires (DhcpLeaseLifetime)