IcmpV4Statistics::TimestampRepliesSent Property
.NET Framework (current version)
Gets the number of Internet Control Message Protocol version 4 (ICMPv4) Timestamp Reply messages that were sent.
Assembly: System (in System.dll)
A Timestamp Request message causes the receiving computer to send a timestamp reply back to the originating computer. These messages are used to measure the transmission speed on a network.
The following example displays the value of this property.
void ShowTimestampData() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics(); Console::WriteLine( " Timestamp Requests .................. Sent: {0,-10} Received: {1,-10}", statistics->TimestampRequestsSent, statistics->TimestampRequestsReceived ); Console::WriteLine( " Timestamp Replies ................... Sent: {0,-10} Received: {1,-10}", statistics->TimestampRepliesSent, statistics->TimestampRepliesReceived ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: