在各种主机的c#中存储sqlserver中的IPV4地址,但仍存储相同的地址

时间:2016-11-17 07:34:26

标签: c# sql-server

我已经使用过这段代码但是存储了相同的ipv4地址,其中IP地址和位置等是每台机器的不同之处。请检查

public static string GetLocalIPAddress()
    {
        var host = Dns.GetHostEntry(Dns.GetHostName());
        foreach (var ip in host.AddressList)
        {
            if (ip.AddressFamily == AddressFamily.InterNetwork)
            {
                return ip.ToString();
            }
        }
        throw new Exception("Local IP Address Not Found!");
    }

0 个答案:

没有答案