I am looking to figure out what my ip address is from a c# console application. I am used to a web application by using the Request.servervariables() method. But not sure about how to do it in a console app. Any ideas?
Thanks
|
|
I am looking to figure out what my ip address is from a c# console application. I am used to a web application by using the Request.servervariables() method. But not sure about how to do it in a console app. Any ideas? Thanks |
||
|
|
|
|
The easiest way to do this is as follows:
|
||||||||||||
|
|
|
The System.Net namespace is your friend here. In particular, APIs such as DNS.GetHostByName. However, any given machine may have multiple IP addresses (multiple NICs, IPv4 and IPv6 etc) so it's not quite as simple a question as you pose. |
||
|
|
|
|
||
|
|
|
|
System.Net.Dns.GetHostAddresses() should do it. |
||
|
|
|
|
Try this:
|
|||
|
|
|
|
IPAddress[] addresslist = Dns.GetHostAddresses(Dns.GetHostName()); |
||
|
|