您的位置:

C#获取本机IP详解

一、使用Dns类获取本机IP

1、Dns类是System.Net命名空间下的一个类,它提供了网络主机名解析服务。使用Dns.GetHostEntry()方法可以获取本机的IP信息。

using System.Net;

IPAddress[] ipaddrs = Dns.GetHostEntry(Dns.GetHostName()).AddressList;
foreach (IPAddress ipaddr in ipaddrs)
{
    Console.WriteLine("IP Address: " + ipaddr.ToString());
}

2、上面的代码会打印出当前机器的所有IP地址

二、使用IPGlobalProperties类获取本机IP

1、IPGlobalProperties类提供了访问IP协议的全局信息,如连接数、端口号和网络接口信息等。

using System.Net.NetworkInformation;

IPGlobalProperties computerProperties = IPGlobalProperties.GetIPGlobalProperties();
NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces();
foreach (NetworkInterface adapter in nics)
{
    IPInterfaceProperties properties = adapter.GetIPProperties();
    foreach (IPAddressInformation address in properties.UnicastAddresses)
    {
        Console.WriteLine("IP Address: " + address.Address.ToString());
    }
}

2、上面的代码可以获取到本机所有的IPv4和IPv6地址。

三、使用WMI获取本机IP

1、WMI是Windows Management Instrumentation的缩写,是Windows提供的一种管理技术,可以通过C#编写的WMI查询语句来获取系统信息,包括本机的IP地址。

using System.Management;

ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection moc = mc.GetInstances();

foreach (ManagementObject mo in moc)
{
    if ((bool)mo["IPEnabled"] == true)
    {
        Console.WriteLine("IP Address: " + ((string[])mo["IPAddress"])[0]);
    }
}

2、上面的代码通过WMI查询Win32_NetworkAdapterConfiguration类来获取所有启用了IP的网络适配器的IP地址。

四、使用网络接口类获取本机IP

1、网络接口类(NetworkInterface)定义了网络适配器的属性和行为,可以通过这个类获取本机的IP地址。

using System.Net.NetworkInformation;

NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces();
foreach (NetworkInterface adapter in adapters)
{
    IPInterfaceProperties adapterProperties = adapter.GetIPProperties();
    foreach (UnicastIPAddressInformation address in adapterProperties.UnicastAddresses)
    {
        Console.WriteLine("IP Address: " + address.Address.ToString());
    }
}

2、上面的代码通过NetworkInterface.GetAllNetworkInterfaces()方法获取所有的网络接口,然后通过逐个网络接口的IPInterfaceProperties属性来获取IP地址。

五、使用Socket类获取本机IP

1、Socket类提供了网络编程接口,可以通过它获取本机的IP地址。

using System.Net;
using System.Net.Sockets;

IPHostEntry hostEntry = Dns.GetHostEntry(Dns.GetHostName());
foreach (IPAddress ipAddr in hostEntry.AddressList)
{
    if (ipAddr.AddressFamily == AddressFamily.InterNetwork)
    {
        Console.WriteLine("IP Address: " + ipAddr.ToString());
    }
}

2、上面的代码通过获取本机名来获取本机的IP信息。

六、总结

本文介绍了5种方式获取C#中本机的IP地址,通过这些方法,我们可以很轻松地获取到本机的IP地址信息,以便在网络编程中使用。