I do not think that network information is stored by the process, but only for the entire system:
foreach (var network in NetworkInterface.GetAllNetworkInterfaces())
{
IPv4InterfaceStatistics stats = network.GetIPv4Statistics();
Console.WriteLine("In={0}, Out={1}", stats.BytesReceived, stats.BytesSent);
}
source
share