如何使用.NET 获取我的计算机中的网络连接列表?
如何使用c#获取我的电脑中的网络连接列表 vpn 列表或
Windows 7 中的其他路径控制面板\网络和 Internet\网络连接
我需要编写一个函数来在 C# 中连接到互联网
how to get network connection list in my computer with c#
vpn list or other
in windows 7 this path Control Panel\Network and Internet\Network Connections
i need for write a function to connect to internet in c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在寻找网络接口列表。
System.Net.NetworkInformation.NetworkInterface 类可能是您所追求的,特别是 GetAllNetworkInterfaces() 方法。
要获得与控制面板相同的列表,我怀疑您还需要过滤 NetworkInterfaceType 属性值,以跳过环回和隧道接口。
I assume you're looking for the list of network interfaces.
The System.Net.NetworkInformation.NetworkInterface class is probably what you are after, specifically the GetAllNetworkInterfaces() method.
To get the same list as Control Panel, I suspect you will also need to filter on the NetworkInterfaceType property value, to skip loopback and tunneling interfaces.