I need to take an already opened serial port connection (for example, COM1 connected to a device) and ask its baudrate, parity bit, stop bit, etc.
So, is there a way to take all the opened serial connections of the OS and instantiate them, like:
SerialPort myTestSP = "Windows.SerialPorts[1]";
int myTestBR = myTestSP.BaudRate;
Thanks for your time!