Reputation: 2851
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#
Upvotes: 4
Views: 13608
Reputation: 1216
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.
Upvotes: 6