IcmpV4Statistics::ErrorsReceived Property

 

Gets the number of Internet Control Message Protocol version 4 (ICMPv4) error messages that were received.

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

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

Property Value

Type: System::Int64

An Int64 value that specifies the total number of ICMP error messages that were received.

The following example displays the value of this property.

void ShowIcmpV4ErrorData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics();
   Console::WriteLine( "  Errors .............................. Sent: {0,-10}   Received: {1,-10}", 
      statistics->ErrorsSent, 
      statistics->ErrorsReceived );
}

.NET Framework
Available since 2.0
Return to top
Show: