如何使用.NET 获取我的计算机中的网络连接列表?

发布于 2024-08-27 11:47:18 字数 113 浏览 4 评论 0原文

如何使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷你仙 2024-09-03 11:47:18

我假设您正在寻找网络接口列表。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文