Udostępnij za pośrednictwem


IcmpV6Statistics.RouterSolicitsReceived Właściwość

Definicja

Pobiera liczbę odebranych komunikatów na żądanie routera protokołu ICMPv6 w wersji 6 (ICMPv6).

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

Wartość właściwości

Wartość Int64 określająca łączną liczbę odebranych komunikatów na żądanie routera.

Przykłady

Poniższy przykład przedstawia wartość tej właściwości.

void ShowIcmpV6RouterData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
   Console::WriteLine( "  Advertisements ....................... Sent: {0,-10}   Received: {1,-10}", 
      statistics->RouterAdvertisementsSent, 
      statistics->RouterAdvertisementsReceived );
   Console::WriteLine( "  Solicits ............................. Sent: {0,-10}   Received: {1,-10}", 
      statistics->RouterSolicitsSent, 
      statistics->RouterSolicitsReceived );
}
public static void ShowIcmpV6RouterData ()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();

    Console.WriteLine ("  Advertisements ....................... Sent: {0,-10}   Received: {1,-10}",
        statistics.RouterAdvertisementsSent, statistics.RouterAdvertisementsReceived);
    Console.WriteLine ("  Solicits ............................. Sent: {0,-10}   Received: {1,-10}",
        statistics.RouterSolicitsSent, statistics.RouterSolicitsReceived);
}
Public Shared Sub ShowIcmpV6RouterData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
    
    Console.WriteLine("  Advertisements ....................... Sent: {0,-10}   Received: {1,-10}", statistics.RouterAdvertisementsSent, statistics.RouterAdvertisementsReceived)
    Console.WriteLine("  Solicits ............................. Sent: {0,-10}   Received: {1,-10}", statistics.RouterSolicitsSent, statistics.RouterSolicitsReceived)

End Sub

Uwagi

Zanim komputer hosta będzie mógł wysyłać datagramy IP poza bezpośrednio dołączoną podsiecią, musi odnaleźć adres co najmniej jednego routera w tej podsieci. To odnajdywanie można wykonać przy użyciu komunikatów ICMP nazywanych anonsami routera i nakłanianiami routera. Komunikat anonsowy jest okresowo wysyłany przez router, aby ogłosić jego obecność i adresy jego interfejsów. Gdy komputer łączy się z siecią, a nie oczekuje na odbieranie anonsów routera, może wysyłać żądania routera, aby routery wysyłały reklamy natychmiast.

Dotyczy