C#性能计数器和nic名称

时间:2012-06-20 15:56:57

标签: c# networking performancecounter

perfmon计数器使用不同的NIC名称与ipconfig / all和c#系统调用相比,如下所示(这是来自ipconfig / all)

   Ethernet adapter HHHH:       

   Connection-specific DNS Suffix  . :   

   Description . . . . . . . . . . . : HP NC364T PCIe Quad Port Gigabit Server Adapter #3
   Physical Address. . . . . . . . . : 00-1F-29-0D-26-59
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   IPv4 Address. . . . . . . . . . . : 166.49.47.10(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.240
   Default Gateway . . . . . . . . . :
   NetBIOS over Tcpip. . . . . . . . : Disabled
using System.Net.NetworkInformation;
NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces();

我得到HP NC364T PCIe Quad Port Gigabit Server Adapter #3。与ipconfig完全相同。 但是 perfmon正在使用HP NC364T PCIe Quad Port Gigabit Server Adapter _3(下划线而不是哈希)。我是否必须使用不同的调用来获得与perfmon相同的计数器名称?如果是这样,它是什么?

1 个答案:

答案 0 :(得分:1)

我个人会使用注册表以本机方式列出网络设备。 有许多不同的方法可以检索信息,但并非所有方式都可以显示 像系统这样的信息。 可能的代码示例可能如下所示(未完全处理错误)。 它适用于Windows Vista 32/64位和7。 它与.NET类有很大的不同,但它认为它的方式相同。 必须添加“使用Microsoft.Win32”命名空间才能运行代码。

private void button1_Click(object sender, EventArgs e)
    {
        ListPCIDevices(false, listBox1);
    }

    public static void ListPCIDevices(bool ListOnlyNetworkDevices, ListBox LB)
    {
        string NetKey = @"SYSTEM\ControlSet001\Enum\PCI";
        using (RegistryKey rk = Registry.LocalMachine.OpenSubKey(NetKey))
        {
            foreach (string skName in rk.GetSubKeyNames())
            {
                using (RegistryKey sk = rk.OpenSubKey(skName))
                {

                    foreach (string skSubName in sk.GetSubKeyNames())
                    {

                        using (RegistryKey ssk = sk.OpenSubKey(skSubName))
                        {

                            object ItemName = ssk.GetValue("DeviceDesc");
                            object ItemCat = ssk.GetValue("Class");
                            if (ItemCat == null) { ItemCat = "Unknown"; }

                            if ((ItemName != null) && ((ItemCat.ToString() == "Net")||(!ListOnlyNetworkDevices)))
                            {
                                LB.Items.Add(ItemName.ToString().Split(';')[1]);
                            }

                        }
                    }
                }
            }
        }
    }