NetworkChange.NetworkAddressChanged : NetworkChange « System.Net.NetworkInformation « C# / C Sharp by API






NetworkChange.NetworkAddressChanged

  
using System;
using System.Net.NetworkInformation;

class MainClass
{
    
    private static void NetworkAddressChanged(object sender, EventArgs e)
    {
        Console.WriteLine("Current IP Addresses:");

        foreach (NetworkInterface ni in NetworkInterface.GetAllNetworkInterfaces())
        {
            foreach (UnicastIPAddressInformation addr in ni.GetIPProperties().UnicastAddresses) {
                Console.WriteLine("{0}", addr.Address );
            }
        }
    }

    public static void Main(string[] args)
    {
        NetworkChange.NetworkAddressChanged += NetworkAddressChanged;
    }
}

   
    
  








Related examples in the same category

1.NetworkChange.NetworkAvailabilityChanged