[UWP] Could wifi scan take very long time at the same time from several PC?
kiwook hong
21
Reputation points
Hi,
I have the uwp app that is scanning nearby wifi APs in foreground.
Here is APIs what I am using, not the real code.
var check = await WiFiAdapter.RequestAccessAsync();
var adaptor = await DeviceInformation.FindAllAsync(WiFiAdapter.GetDeviceSelector());
var select = await WiFiAdapter.FromIdAsync(adaptor [0].Id);
await select .ScanAsync();
Today I saw that 3 PCs couldn't get any results at the same time in several miniutes.
I can't understand if these can affect to several PC at the similar time. I don't think so but they did.
There was no exception during the time but just no logs what I added between those API calls.
After some time passed, all worked.
Does someone have the similar experience or know about this?
Developer technologies | Universal Windows Platform (UWP)
3,042 questions
Sign in to answer