IcmpV4Statistics.RedirectsSent 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得已傳送的網際網路控制訊息通訊協定第 4 版 (ICMPv4)「重新導向」訊息數目。
public:
abstract property long RedirectsSent { long get(); };
public abstract long RedirectsSent { get; }
member this.RedirectsSent : int64
Public MustOverride ReadOnly Property RedirectsSent As Long
屬性值
Int64 值,指定已傳送的 ICMP「重新導向」訊息總數。
範例
下列範例會顯示這個屬性的值。
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
備註
路由器會傳送重新導向訊息,以通知主計算機目的地位址的更佳路由。