IcmpV6Statistics::ParameterProblemsReceived Property

 

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

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

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

Property Value

Type: System::Int64

An Int64 value that specifies the total number of ICMP Parameter Problem messages received.

Parameter Problem messages are sent when a host computer or router encounters problems while processing the contents of a packet header, such as encountering a invalid IPv6 option or a invalid Next Header type.

The following example displays the value of this property.

void ShowIcmpV6ParameterData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
   Console::WriteLine( "  Parameter Problems .................. Sent: {0,-10}   Received: {1,-10}", 
      statistics->ParameterProblemsSent, 
      statistics->ParameterProblemsReceived );
}

.NET Framework
Available since 2.0
Return to top
Show: