2012-05-16 3 views

답변

3

작품 :

var properties = IPGlobalProperties.GetIPGlobalProperties(); 
var httpConnections = (from connection in properties.GetActiveTcpConnections() 
         where connection.LocalEndPoint.Port == 80 
         select connection); 
관련 문제