Bagikan melalui


IcmpV6Statistics.RedirectsReceived Properti

Definisi

Mendapatkan jumlah pesan Pengalihan Protokol Pesan Kontrol Internet versi 6 (ICMPv6) yang diterima.

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

Nilai Properti

Nilai Int64 yang menentukan jumlah total pesan Pengalihan ICMP yang diterima.

Contoh

Contoh berikut menampilkan nilai properti ini.

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

Keterangan

Pesan pengalihan dikirim oleh perute untuk memberi tahu komputer host tentang rute yang lebih baik untuk alamat tujuan.

Berlaku untuk