ManagedNativeWifi
ManagedNativeWifi copied to clipboard
A managed implementation of Native Wifi API
I checked there is one API, which gives SSID of currently connected network enumerateConnectedNetworkSsids. but I am looking for . BSSID, I can match sssid value with bss network but...
Nice framework... but I am trying to establish a connection to an available network. I have connected manually, and made a snapshot of the XML. Then removed the connection. I...
bool result = NativeWifi.ConnectNetwork( interfaceId: interfaceInfo.Id, profileName: ssid, bssType: BssType.Infrastructure, System.Net.NetworkInformation.PhysicalAddress.Parse("78:9C:E7:A0:C8:56") );
Awesome API! I see that NativeWifi.SetProfileEapXmlUserData() was recently added. The remarks say "In some cases, this function may return true but fail." This is the very problem I'm struggling with....
Hi, could you please sign the assembly published in NuGet. If that's not done, then it's not possible to use it in a "signed" application ("A strongly-named assembly is required.")...
Changed target framework from NET5.0 to NET6.0 New event args objects were added to enhance the following events: - AvailabilityChanged - ConnectionChanged - InterfaceChanged - ProfileChanged Readme file was updated...
When I scan the network using: await NativeWifi.ScanNetworksAsync(timeout: TimeSpan.FromSeconds(8)); This operation completes very quickly and does not look like it scanned, so I am assuming it just completes the process...
I did not see any events you can subscribe to, for example when a scan completed, or a profile changed, or a wifi network got connected or disconnected. Do they...
I have an application that runs in the background. Typically, it is started through an RDP connection, but eventually we will run as a service. Everything works fine when we...
I would like to develop an alternative simplified UI to Windows wireless settings. This would require the user to select an available network and then connect to it. The underlying...