Goodmornig,
I'm using wclBluetoothDiscovery monitoring service to find bluetooth devices near to my application; when a device is found event OnDeviceFound is correctly called, but if I want to know the name of device through the method device.GetName(), sometimes it returns a string empty.
I've found that i've to wait 3 or 5 seconds before ask the device name (
http://forum.btframework.com/index.php/topic,3330.msg8505.html#msg8505), but if I use a thread, a timer (also the timer of Windows.Forms that work on UI Thread), or somethings similar, when I access device object program raises an "Object disposed exception", probably because bt framework, due to bt stack, is not completely thread-safe.
So, how can i wait for some seconds, without using a blocking UI-Thread while cycle?
Thanks in advance!