IcmpV4Statistics.ParameterProblemsSent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the number of Internet Control Message Protocol version 4 (ICMPv4) Parameter Problem messages that were sent.
public:
abstract property long ParameterProblemsSent { long get(); };
public abstract long ParameterProblemsSent { get; }
member this.ParameterProblemsSent : int64
Public MustOverride ReadOnly Property ParameterProblemsSent As Long
Property Value
An Int64 value that specifies the total number of ICMP Parameter Problem messages that were sent.
Examples
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 );
}
public static void ShowParameterData()
{
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IcmpV4Statistics statistics = properties.GetIcmpV4Statistics();
Console.WriteLine(" Parameter Problems .................. Sent: {0,-10} Received: {1,-10}",
statistics.ParameterProblemsSent, statistics.ParameterProblemsReceived);
}
Public Shared Sub ShowParameterData()
Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Dim statistics As IcmpV4Statistics = properties.GetIcmpV4Statistics()
Console.WriteLine(" Parameter Problems .................. Sent: {0,-10} Received: {1,-10}", statistics.ParameterProblemsSent, statistics.ParameterProblemsReceived)
End Sub
Remarks
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.