본문 바로가기
C# /WindowsForm

호스트 이름으로 검색하여 IP 주소 얻어오기

by Hwoarang757 2013. 12. 3.

SmartClient 일부 사용자 컨트롤 중 사용자 IP를 얻어오는 메서드가 필요하게 되었다!! 

 

using System.Net;

 

public string GetLocalIPAddress()

{

IPHostEntry host = Dns.Resolve(Dns.GetHostName());

string localIP = host.AddressList[0].ToString();

lblLocalIPAddress.Text = localIP;

return localIP;

}