WIA - 在网络上捕获设备

时间:2015-04-30 18:52:04

标签: c#

我在C#编写代码,WIA用于执行扫描任务。但是,我在捕获网络上共享的设备时遇到问题。我的代码捕获了直接连接到机器的所有设备。

public static List<string> GetDevices()
{
    List<string> devices = new List<string>();
    WIA.DeviceManager manager = new WIA.DeviceManager();
    foreach (WIA.DeviceInfo info in manager.DeviceInfos)
    {
        devices.Add(info.DeviceID);
    }
    return devices;
}

如何阅读网络上共享的设备?

0 个答案:

没有答案