IcmpV6Statistics.RedirectsSent Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
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.
void ShowIcmpV6RedirectsData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
Console::WriteLine( " Redirects ........................... Sent: {0,-10} Received: {1,-10}",
statistics->RedirectsSent,
statistics->RedirectsReceived );
}
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
Berkolaborasi dengan kami di GitHub
Sumber untuk konten ini dapat ditemukan di GitHub, yang juga dapat Anda gunakan untuk membuat dan meninjau masalah dan menarik permintaan. Untuk informasi selengkapnya, lihat panduan kontributor kami.