IcmpV6Statistics::MessagesReceived Property
.NET Framework (current version)
Gets the number of Internet Control Message Protocol version 6 (ICMPv6) messages received.
Assembly: System (in System.dll)
ICMPv6 messages are sent to communicate errors and information about packets sent using Internet Protocol version 6 (IPv6).
The following example displays the value of this property.
void ShowIcmpV6MessageData() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics(); Console::WriteLine( " Messages ............................ Sent: {0,-10} Received: {1,-10}", statistics->MessagesSent, statistics->MessagesReceived ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: