TcpStatistics::SegmentsResent Property
.NET Framework (current version)
Gets the number of Transmission Control Protocol (TCP) segments re-sent.
Assembly: System (in System.dll)
TCP segments that are not acknowledged as being received at the destination are retransmitted.
The following code example displays segment information.
void ShowTcpSegmentData() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); TcpStatistics ^ tcpstat = properties->GetTcpIPv4Statistics(); Console::WriteLine( " Segment Data:" ); Console::WriteLine( " Received ........................... : {0}", tcpstat->SegmentsReceived ); Console::WriteLine( " Sent ................................ : {0}", tcpstat->SegmentsSent ); Console::WriteLine( " Retransmitted ....................... : {0}", tcpstat->SegmentsResent ); Console::WriteLine( " Resent with reset ................... : {0}", tcpstat->ResetsSent ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: