Udostępnij za pośrednictwem


IcmpV4Statistics.RedirectsReceived Właściwość

Definicja

Pobiera liczbę odebranych komunikatów przekierowania protokołu ICMPv4 (Internet Control Message Protocol w wersji 4).

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

Wartość właściwości

Wartość Int64 określająca całkowitą liczbę odebranych komunikatów przekierowania ICMP.

Przykłady

W poniższym przykładzie jest wyświetlana wartość tej właściwości.

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

Uwagi

Komunikaty przekierowania są wysyłane przez routery w celu poinformowania komputera hosta o lepszej trasie dla adresu docelowego.

Dotyczy