1 write to _statistics
System.Net.NetworkInformation (1)
System\Net\NetworkInformation\LinuxIPv4InterfaceStatistics.cs (1)
14_statistics = new LinuxIPInterfaceStatistics(name);
12 references to _statistics
System.Net.NetworkInformation (12)
System\Net\NetworkInformation\LinuxIPv4InterfaceStatistics.cs (12)
17public override long BytesReceived => _statistics.BytesReceived; 19public override long BytesSent => _statistics.BytesSent; 21public override long IncomingPacketsDiscarded => _statistics.IncomingPacketsDiscarded; 23public override long IncomingPacketsWithErrors => _statistics.IncomingPacketsWithErrors; 26public override long IncomingUnknownProtocolPackets => _statistics.IncomingUnknownProtocolPackets; 28public override long NonUnicastPacketsReceived => _statistics.NonUnicastPacketsReceived; 31public override long NonUnicastPacketsSent => _statistics.NonUnicastPacketsSent; 33public override long OutgoingPacketsDiscarded => _statistics.OutgoingPacketsDiscarded; 35public override long OutgoingPacketsWithErrors => _statistics.OutgoingPacketsWithErrors; 37public override long OutputQueueLength => _statistics.OutputQueueLength; 39public override long UnicastPacketsReceived => _statistics.UnicastPacketsReceived; 41public override long UnicastPacketsSent => _statistics.UnicastPacketsSent;