Hi, I am using spokes COM service in c sharp to connect to device events. If there are multiple Plantronics devices available on computer then I want to connect to the Plantronics device of my choice. Is this possible in a c# COM wrapper to provide device name to which we want to register for events? I am using following code to attach device with com session:
m_sessionComManager = new SessionComManagerClass();
m_comSession = m_sessionComManager.Register(SessionName);
m_activeDevice = m_comSession.ActiveDevice;
This gives me one connected device of its own choice. I don't have option here to get the device of my choice. Anybody here have any idea on this that how can I attach to the device of my own choice. Thank you very much.