Reputation: 4107
It there a way I can access the list of stored wireless connections in C# (Window Vista)
I mean the list found in: "Control Panel" -> "Network and Sharing Center" -> "Manage Wireless Networks"
Upvotes: 4
Views: 1052
Reputation: 54148
You can do some of this using Managed Wifi, which wraps the Native Wifi API.
Upvotes: 2
Reputation: 81660
NetworkInterface.GetAllNetworkInterfaces()
.Where(x=>x.NetworkInterfaceType == NetworkInterfaceType.Wireless80211)
Upvotes: 3