Declare a method to handle NetworkAdressChanged events : NetworkChange « Network « C# / CSharp Tutorial






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;
    }
}








33.33.NetworkChange
33.33.1.Declare a method to handle NetworkAvailabilityChanged events
33.33.2.Declare a method to handle NetworkAdressChanged events