TcpStatistics::MaximumTransmissionTimeout Property
.NET Framework (current version)
Gets the maximum retransmission time-out value for Transmission Control Protocol (TCP) segments.
Assembly: System (in System.dll)
TCP starts a retransmission timer when each outbound segment is passed to the network layer (IP). If no acknowledgement is received for the data in the segment before the timer expires, the segment is retransmitted. The timer can be set to any value between the MinimumTransmissionTimeout value and the MaximumTransmissionTimeout value.
The following code example displays time-out and maximum connection information.
void ShowTcpTimeouts() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); TcpStatistics ^ tcpstat = properties->GetTcpIPv4Statistics(); Console::WriteLine( " Minimum Transmission Timeout............. : {0}", tcpstat->MinimumTransmissionTimeout ); Console::WriteLine( " Maximum Transmission Timeout............. : {0}", tcpstat->MaximumTransmissionTimeout ); Console::WriteLine( " Maximum connections ............. : {0}", tcpstat->MaximumConnections ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: