9

我需要知道系统中当前使用的是哪种 USB 设备。有一个关于 USB 设备类代码的 USB规范。但我无法获取设备类型,WMI 请求WQL: select * from Win32_UsbHub在类代码、子类代码、协议类型字段上给出空值。任何想法如何检测当前使用的 USB 设备类型?

我当前的代码:

ManagementObjectCollection collection; 
using (var searcher = new ManagementObjectSearcher(@"Select * From Win32_USBHub")) 
{
    collection = searcher.Get();
    foreach (var device in collection)
        {
            var deviceId = (string)GetPropertyValue("DeviceID");
            var pnpDeviceId = (string)GetPropertyValue("PNPDeviceID");
            var descr = (string)device.GetPropertyValue("Description");
            var classCode = device.GetPropertyValue("ClassCode"); //null here
        }
}
4

1 回答 1

5

您可以下载USB 查看源代码作为起点。这将遍历 PC (C#) 上的所有 USB 设备并提取有关每个设备的信息。要获取Class codeSubclass codeProtocoltype 字段,您需要稍微修改它。更改下面的内容并运行它,您将通过单击树视图中的项目获取每个 USB 设备的信息(信息将显示在右侧面板中)。

对 USB.cs 的修改:

// Add the following properties to the USBDevice class
// Leave everything else as is
public byte DeviceClass
{
   get { return DeviceDescriptor.bDeviceClass; }
}

public byte DeviceSubClass
{
   get { return DeviceDescriptor.bDeviceSubClass; }
}

public byte DeviceProtocol
{
   get { return DeviceDescriptor.bDeviceProtocol; }
}

对 fmMain.cs 的修改

// Add the following lines inside the ProcessHub function
// inside the "if (port.IsDeviceConnected)" statement
// Leave everything else as is
if (port.IsDeviceConnected)
{
   // ...
   sb.AppendLine("SerialNumber=" + device.SerialNumber);
   // Add these three lines
   sb.AppendLine("DeviceClass=0x" + device.DeviceClass.ToString("X"));
   sb.AppendLine("DeviceSubClass=0x" + device.DeviceSubClass.ToString("X"));
   sb.AppendLine("DeviceProtocol=0x" + device.DeviceProtocol.ToString("X"));
   // ...
}
于 2013-08-16T13:21:41.347 回答