特定のポートで、パフォーマンスカウンターを使用してすべてのトラフィックを監視する方法はありますか?
私がやっている:
GetCounterValue(_netRecvCounters[index], "Network Interface", "Bytes Received/sec", _instanceNames[index]):
double GetCounterValue(PerformanceCounter pc, string categoryName, string counterName, string instanceName)
{
pc.CategoryName = categoryName;
pc.CounterName = counterName;
pc.InstanceName = instanceName;
return pc.NextValue();
}
しかし、それはすべてを記録するようです