現在、デバイス「BTLink BluetoothtoSerialAdapter」に接続するためのアプリケーションを作成しています
デバイスに関する詳細情報:デバイスの仕様次 のようなコードを作成しました。
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);
BluetoothService.DialupNetworking、BluetoothService.SerialPortの2種類のGUIDをテストしました。「ターゲットマシンがアクティブに拒否したため、接続できませんでした」というメッセージが表示されました。何が問題になっていますか?
よろしく、mykhaylo