IcmpV4Statistics.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 4 (ICMPv4) 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 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
Keterangan
Pesan pengalihan dikirim oleh perute untuk memberi tahu komputer host tentang rute yang lebih baik untuk alamat tujuan.