vote up 1 vote down star

I am pairing to or connecting to a Bluetooth device that has a serial port service associated with it. Is is possible to determine the COM port it registers too? If so, how?

flag

1 Answer

vote up 0 vote down check

I just found the following C# WMI code seems to do the job. But is this reliable?

        string deviceid = string.Empty;
        ManagementObjectSearcher searcher = new ManagementObjectSearcher ( "Select * from WIN32_SerialPort" );
        foreach ( ManagementObject port in searcher.Get () )
        {
            string name = port.GetPropertyValue ("Name" ) as string;
            string provider = port.GetPropertyValue ( "ProviderType" ) as string;
            if ( provider == null )
            {
                deviceid = port.GetPropertyValue ( "DeviceId" ) as string;
            }
        }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.