IcmpV6Statistics::EchoRequestsSent Property
.NET Framework (current version)
Gets the number of Internet Control Message Protocol version 6 (ICMPv6) Echo Request messages 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 ShowIcmpV6EchoData() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics(); 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: