Bagikan melalui


IcmpV6Statistics.RedirectsSent Properti

Definisi

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

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

Nilai Properti

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

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