IcmpV6Statistics::RedirectsReceived Property
.NET Framework (current version)
Gets the number of Internet Control Message Protocol version 6 (ICMPv6) Redirect messages received.
Assembly: System (in System.dll)
Redirect messages are sent by routers to inform a host computer of a better route for a destination address.
The following example displays the value of this property.
void ShowIcmpV6RedirectsData() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics(); Console::WriteLine( " Redirects ........................... Sent: {0,-10} Received: {1,-10}", statistics->RedirectsSent, statistics->RedirectsReceived ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: