[UWP] Could wifi scan take very long time at the same time from several PC?

kiwook hong 21 Reputation points
2021-05-12T12:03:05.523+00:00

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)
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.