I took over this C# project from some other engineer. This is a window form application in which I have to connect to an ad-hoc wireless network manually. The program uses the NativeWifi namespace (there are 2 other files: WlanApi.cs and Interop.cs) to manage the wlan interface. I am unsure about what exactly my program is using to manage the wireless network (is this ManagedWifi? ManagedWifi has no documentation so I can't tell).
EDIT: Ok, this is Managed Wifi API. Still, I don't see anything under Documentation tab at http://managedwifi.codeplex.com/documentation...
I have looked through some of the topic with similar titles, but I have yet to find my answer. Here's my problem:
My program is supposed to connect to the specified ad-hoc network, and when it finished connecting, it will start sending request to a specified address. I was able to get WlanNotificationData to tell the state of the wireless interface (connected, disconnected, disassociating, etc...). But this does not tell me whether the system is truly connected to the network. After 'Connected', it will still take a while for the system to 'Identify' the network, before request can be sent. Otherwise, I would often get timeout / fail to retrieve response exception. How can I tell when I am able to start sending request over the wireless network?
EDIT2: Perhaps I didn't make myself clear enough: When Wlan return Connected, if you look at Windows' wireless manager, it will usually say: "Identifying". During this period, my request often take a long time to receive the response (usually after windows' wireless manager say "Connected", or I get a timeout).