IcmpV6Statistics::EchoRequestsReceived Property

 

Gets the number of Internet Control Message Protocol version 6 (ICMPv6) Echo Request messages received.

Namespace:   System.Net.NetworkInformation
Assembly:  System (in System.dll)

public:
property long long EchoRequestsReceived {
	virtual long long get() abstract;
}

Property Value

Type: System::Int64

An Int64 value that specifies the total number of number of ICMP Echo Request messages received.

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
Return to top
Show: