İnternet Ip ve Local Ip i Öğrenmek
Bu makalede İnternet Ip mizi ve bilgisayarımızın local ip numarasını öğreneceğiz.
using System.IO;
using System.Net; ı
formunuza ekleyin. Aşağıdaki şekli inceleyin.
Şekil 1
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private string GetHttpTxt(string URL)
{
Stream stm = HttpWebRequest.Create(URL).GetResponse().GetResponseStream();
return new StreamReader(stm, false).ReadToEnd();
}
private void button1_Click(object sender, EventArgs e)
{
string a;
a = (GetHttpTxt("http://whatismyip.com/automation/n09230945.asp"));
textBox1.Text = a;
}
private void button2_Click(object sender, EventArgs e)
{
IPHostEntry ihe = Dns.GetHostByName(Dns.GetHostName());
IPAddress myself = ihe.AddressList[0];
textBox2.Text = Convert.ToString(myself);
}
}
}
//Bir sonraki makalede buluşmak üzere. Bahadır