2012-05-16 1 views

Répondre

3

Works pour moi:

var properties = IPGlobalProperties.GetIPGlobalProperties(); 
var httpConnections = (from connection in properties.GetActiveTcpConnections() 
         where connection.LocalEndPoint.Port == 80 
         select connection); 
Questions connexes