Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a windows service. I need to transfer files over network using TCP/IP. Now the problem is I have only network username to connect. Is there any way I can find the ip address of a user using its network username.

share|improve this question
2  
Users have no ip addresses. Machines have. – Jan Dec 21 '11 at 11:56
Users can be logged into multiple machines and may not have a single associated IP address. This is not going to be possible. – Cody Gray Dec 21 '11 at 12:01
By user network name i mean the machine name. – Harsh Dec 21 '11 at 12:58

closed as not a real question by pratap k, Anuraj, RB., casperOne Dec 21 '11 at 13:52

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 2 down vote accepted
string name = "somename";
IPAddress[] addresslist = Dns.GetHostAddresses(name);

foreach (IPAddress theaddress in addresslist)
{
   Console.WriteLine(theaddress.ToString());
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.