NetworkChange.NetworkAddressChanged Event
Occurs when the IP address of a network interface changes.
Namespace: System.Net.NetworkInformation
Assembly: System (in System.dll)
The NetworkChange class raises NetworkAddressChanged events when the address of a network interface, also called a network card or adapter, changes.
To have a NetworkChange object call an event-handling method when a NetworkAddressChanged event occurs, you must associate the method with a NetworkAddressChangedEventHandler delegate, and add this delegate to this event.
The NetworkAddressChanged event is supported on Windows 2000 and later.
The following code example listens for address changes and displays the status of network interfaces when a NetworkAddressChanged event occurs.
using System; using System.Net; using System.Net.NetworkInformation; namespace Examples.Net.AddressChanges { public class NetworkingExample { public static void Main() { NetworkChange.NetworkAddressChanged += new NetworkAddressChangedEventHandler(AddressChangedCallback); Console.WriteLine("Listening for address changes. Press any key to exit."); Console.ReadLine(); } static void AddressChangedCallback(object sender, EventArgs e) { NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces(); foreach(NetworkInterface n in adapters) { Console.WriteLine(" {0} is {1}", n.Name, n.OperationalStatus); } } } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.