IcmpV4Statistics::EchoRequestsSent Property
.NET Framework (current version)
Gets the number of Internet Control Message Protocol version 4 (ICMPv4) Echo Request messages that were sent.
Assembly: System (in System.dll)
Echo Request and Echo Reply messages allow a computer to request an ICMP response from a remote computer on a network. This functionality is often used to determine the validity of remote addresses.
The following example displays the value of this property.
void ShowIcmpV4EchoData() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics(); Console::WriteLine( " Echo Requests ....................... Sent: {0,-10} Received: {1,-10}", statistics->EchoRequestsSent, statistics->EchoRequestsReceived ); Console::WriteLine( " Echo Replies ........................ Sent: {0,-10} Received: {1,-10}", statistics->EchoRepliesSent, statistics->EchoRepliesReceived ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: