有一种方法可以访问C#(Window Vista)中存储的无线连接列表
我的意思是在“控制面板”中找到的列表 - > “网络和共享中心” - > “管理无线网络”
答案 0 :(得分:3)
NetworkInterface.GetAllNetworkInterfaces()
.Where(x=>x.NetworkInterfaceType == NetworkInterfaceType.Wireless80211)
答案 1 :(得分:2)
您可以使用包含Managed Wifi的Native Wifi API执行此操作。