Sdílet prostřednictvím


IcmpV4Statistics.RedirectsSent Vlastnost

Definice

Získá počet zpráv IP Control Message Protocol verze 4 (ICMPv4) přesměrování zprávy, které byly odeslány.

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

Hodnota vlastnosti

Hodnota Int64 , která určuje celkový počet zpráv přesměrování protokolu ICMP, které byly odeslány.

Příklady

Následující příklad zobrazí hodnotu této vlastnosti.

void ShowRedirectsData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics();
   Console::WriteLine( "  Redirects ........................... Sent: {0,-10}   Received: {1,-10}", 
      statistics->RedirectsSent, 
      statistics->RedirectsReceived );
}
public static void ShowRedirectsData()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV4Statistics statistics = properties.GetIcmpV4Statistics();
    Console.WriteLine("  Redirects ........................... Sent: {0,-10}   Received: {1,-10}",
        statistics.RedirectsSent, statistics.RedirectsReceived);
}
Public Shared Sub ShowRedirectsData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV4Statistics = properties.GetIcmpV4Statistics()
    Console.WriteLine("  Redirects ........................... Sent: {0,-10}   Received: {1,-10}", statistics.RedirectsSent, statistics.RedirectsReceived)

End Sub

Poznámky

Zprávy přesměrování odesílají směrovače, aby hostitelský počítač informovaly o lepší trase pro cílovou adresu.

Platí pro