3

以下是我在 Windows XP 中获取默认 NIC 的代码,但相同的代码在 Windows 7 中不起作用。阅读 MSDN 后真的很困惑。有什么解决办法吗?

//----------------- Getting all the Nic's --------------------
foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces())
{
    //------------ Getting properties of IPV4 ----------------
    IPInterfaceProperties ipProps = nic.GetIPProperties();

    //------------ Getting the Ip Properties -----------------
    if (ipProps.GetIPv4Properties() != null)
    {
        dic.Add(ipProps.GetIPv4Properties().Index, nic.Name);
    }

错误:请求协议未配置,或没有实现。

4

1 回答 1

2

这意味着您正在访问没有 IPv4 支持的接口。检查它:

if (nic.Supports(NetworkInterfaceComponent.IPv4)) // means IPv4 support is present

请参阅此处了解更多信息。

于 2013-01-01T18:06:26.380 回答