是否可以使用.NET枚举当前进程的所有打开的连接? (类似于netstat工具执行此操作的方式)

最佳答案

        IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
        TcpConnectionInformation[] connections = properties.GetActiveTcpConnections();

您必须将此数组转换为IEnum

关于c# - 枚举所有打开的连接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20465847/

10-11 09:24