- 사용자 IP 주소 가져오기
#region IP 정보 가져오기
private string Get_Ip_address()
{
var host = Dns.GetHostEntry(Dns.GetHostName());
string Local_IP = string.Empty;
foreach (var ip in host.AddressList)
{
if (ip.AddressFamily == AddressFamily.InterNetwork)
{
Local_IP = ip.ToString();
}
}
return Local_IP;
}
#endregion
'프로그래밍 > C#' 카테고리의 다른 글
Minimize a form without border using the taskbar (0) | 2022.08.17 |
---|---|
Create Folder on FTP Server in C# (0) | 2022.08.17 |
C# RabbitMQ Client (0) | 2021.06.30 |
HttpUtility.HtmlDecode (0) | 2021.06.22 |
Windows Installer 에서 특정파일 자동복구 기능 중지 (0) | 2021.04.01 |