IcmpV6Statistics.RedirectsSent Eigenschaft

Definition

Ruft die Anzahl der gesendeten ICMPv6 (Internet Control Message Protocol, Version 6)-Redirect-Meldungen ab.

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

Eigenschaftswert

Ein Int64-Wert, der die Gesamtzahl der gesendeten ICMP-Redirect-Meldungen angibt.

Beispiele

Im folgenden Beispiel wird der Wert dieser Eigenschaft angezeigt.

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

Hinweise

Umleitungsnachrichten werden von Routern gesendet, um einen Hostcomputer über eine bessere Route für eine Zieladresse zu informieren.

Gilt für: