1 write to _table
System.Net.NetworkInformation (1)
System\Net\NetworkInformation\LinuxTcpStatistics.cs (1)
15
_table
= StringParsingHelpers.ParseTcpGlobalStatisticsFromSnmpFile(NetworkFiles.SnmpV4StatsFile);
7 references to _table
System.Net.NetworkInformation (7)
System\Net\NetworkInformation\LinuxTcpStatistics.cs (7)
33
public override long ErrorsReceived { get { return
_table
.InErrs; } }
35
public override long FailedConnectionAttempts { get { return
_table
.AttemptFails; } }
37
public override long MaximumConnections { get { return
_table
.MaxConn; } }
45
public override long ResetConnections { get { return
_table
.EstabResets; } }
50
public override long SegmentsReceived { get { return
_table
.InSegs; } }
52
public override long SegmentsResent { get { return
_table
.RetransSegs; } }
54
public override long SegmentsSent { get { return
_table
.OutSegs; } }