ホストからのすべてのhttpアクティブ接続を一覧表示したいのですが、以下のコードを使用して、tcp接続を一覧表示していますが、このtcpリストから具体的にhttp接続を検索したいと思います。
Console.WriteLine("Active TCP Connections");
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
TcpConnectionInformation[] connections = properties.GetActiveTcpConnections();
foreach (TcpConnectionInformation c in connections)
{
Console.WriteLine("{0} <==> {1}",
c.LocalEndPoint.ToString(),
c.RemoteEndPoint.ToString());
}