IcmpV6Statistics::PacketTooBigMessagesReceived Property
.NET Framework (current version)
Gets the number of Internet Control Message Protocol version 6 (ICMPv6) Packet Too Big messages received.
Assembly: System (in System.dll)
A router sends a Packet Too Big message when a packet cannot be forwarded because it is larger than the maximum transmission unit (MTU) of the outgoing link.
The following example displays the value of this property.
void ShowIcmpV6BigPacketData() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics(); Console::WriteLine( " Too Big Packet ........................ Sent: {0,-10} Received: {1,-10}", statistics->PacketTooBigMessagesSent, statistics->PacketTooBigMessagesReceived ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: