Hi,
I'm building a program that is constantly detecting bluetooth devices, it works fine, however, when discoverDevices() is running my interenet stops working (cannot browse, it just hangs until my program has finished discovering devices).
Is this normal or is there somthing I'm doing wrong?
Here is the code, it is all in a backgroundWorker :
BluetoothClient client = new BluetoothClient();
client.Client.Blocking =
false; // I added this to see if it would fix the problem, it did not
try
{
BluetoothDeviceInfo ep = commMonitor.EndPointROC;
_worker.ReportProgress(4);
BluetoothDeviceInfo[ devices = client.DiscoverDevices();
Thanks,
Chad