아래와 같이 하면
IPv4 address 를 얻을 수 있습니다.
foreach(NetworkInterface ni in NetworkInterface.GetAllNetworkInterfaces())
{
if(ni.NetworkInterfaceType == NetworkInterfaceType.Wireless80211 || ni.NetworkInterfaceType == NetworkInterfaceType.Ethernet)
{
Console.WriteLine(ni.Name);
foreach (UnicastIPAddressInformation ip in ni.GetIPProperties().UnicastAddresses)
{
if (ip.Address.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork)
{
Console.WriteLine(ip.Address.ToString());
}
}
}
}
반응형
'IT 개발' 카테고리의 다른 글
[iOS] 모바일 웹에서 앱 설치 여부 확인하기(javascript사용, Interval과 setTimeOut을 활용) (0) | 2020.03.30 |
---|---|
[Android] thread 에서 toast alertdialog 사용하기 호출하기 (0) | 2020.03.30 |
[SQL] 오라클 모든 테이블정보 조회 (0) | 2020.03.25 |
[SQL] INSERT SELECT 문 예제 (SELECT 결과 INSERT 하기) (0) | 2020.03.25 |
[SQL] 테이블 정보 가져오기 (오라클 DESC ) (0) | 2020.03.24 |
댓글