目前寫一個應用程序連接到「BTLink藍牙串口適配器」有關設備藍牙串行適配器 - 連接異常
更多信息的設備:device specification 建立了一個這樣的碼:
BluetoothAddress btAddress = null;
if (!BluetoothAddress.TryParse(comboBoxDevices.SelectedValue.ToString().Trim(), out btAddress))
throw new Exception(String.Format("Adress: {0} wrong !", comboBoxDevices.SelectedValue.ToString().Trim()));
BluetoothEndPoint endPoint = new BluetoothEndPoint(btAddress, BluetoothService.DialupNetworking);
_bluetoothClient.Connect(endPoint);
我測試了兩種類型的GUID:BluetoothService.DialupNetworking,BluetoothService.SerialPort。 我收到了以下消息:「由於目標機器主動拒絕,無法建立連接」 出了什麼問題?
最好的問候, mykhaylo