17 Ocak 2011 Pazartesi

NetworkChange.NetworkAddressChanged Sınıfının Kullanımı

Command(cmd) satırından ipconfig /renew in programatik olarak kullanımı

using System;
using System.Net.NetworkInformation;

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

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

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

Hiç yorum yok:

Yorum Gönder