Hi
i want view lan connection all ip address in c# windows application using vs2005
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dorababu MekaPosted Sep 24, 2012, 9:11 AM
using System.Net.NetWorkInformation;
IPGlobalProperties network = IPGlobalProperties. GetIPGlobalProperties();
TcpConnectionInformation[] connections = network. GetActiveTcpConnections();
vinoth kumarPosted Sep 28, 2012, 2:40 AM