IcmpV4Statistics::ParameterProblemsSent Property
.NET Framework (current version)
Gets the number of Internet Control Message Protocol version 4 (ICMPv4) Parameter Problem messages that were sent.
Assembly: System (in System.dll)
Parameter Problem messages are sent when a host computer or router encounters problems while processing the contents of a packet header, such as encountering an invalid IPv4 option or an invalid Next Header type.
The following example displays the value of this property.
void ShowParameterData() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics(); Console::WriteLine( " Parameter Problems .................. Sent: {0,-10} Received: {1,-10}", statistics->ParameterProblemsSent, statistics->ParameterProblemsReceived ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: