IcmpV6Statistics.RedirectsReceived Property

Definition

Gets the number of Internet Control Message Protocol version 6 (ICMPv6) Redirect messages received.

public:
 abstract property long RedirectsReceived { long get(); };
public abstract long RedirectsReceived { get; }
member this.RedirectsReceived : int64
Public MustOverride ReadOnly Property RedirectsReceived As Long

Property Value

An Int64 value that specifies the total number of ICMP Redirect messages received.

Examples

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 );
}
public static void ShowIcmpV6RedirectsData ()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
    Console.WriteLine ("  Redirects ........................... Sent: {0,-10}   Received: {1,-10}",
        statistics.RedirectsSent, statistics.RedirectsReceived);
}
Public Shared Sub ShowIcmpV6RedirectsData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
    Console.WriteLine("  Redirects ........................... Sent: {0,-10}   Received: {1,-10}", statistics.RedirectsSent, statistics.RedirectsReceived)

End Sub

Remarks

Redirect messages are sent by routers to inform a host computer of a better route for a destination address.

Applies to