IcmpV6Statistics.NeighborAdvertisementsSent 屬性

定義

取得已傳送的網際網路控制訊息通訊協定第 6 版 (ICMPv6)「近鄰通告」訊息數目。

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

屬性值

Int64 值,指定已傳送的「近鄰通告」訊息總數。

範例

下列範例會顯示這個屬性的值。

void ShowIcmpV6NeighborData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
   Console::WriteLine( "  Advertisements ...................... Sent: {0,-10}   Received: {1,-10}", 
      statistics->NeighborAdvertisementsSent, statistics->NeighborAdvertisementsReceived );
   Console::WriteLine( "  Solicits ............................ Sent: {0,-10}   Received: {1,-10}", 
      statistics->NeighborSolicitsSent, statistics->NeighborSolicitsReceived );
}
public static void ShowIcmpV6NeighborData ()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
    Console.WriteLine ("  Advertisements ...................... Sent: {0,-10}   Received: {1,-10}",
        statistics.NeighborAdvertisementsSent,statistics.NeighborAdvertisementsReceived);
    Console.WriteLine ("  Solicits ............................ Sent: {0,-10}   Received: {1,-10}",
    statistics.NeighborSolicitsSent, statistics.NeighborSolicitsReceived);
}
Public Shared Sub ShowIcmpV6NeighborData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
    Console.WriteLine("  Advertisements ...................... Sent: {0,-10}   Received: {1,-10}", statistics.NeighborAdvertisementsSent, statistics.NeighborAdvertisementsReceived)
    Console.WriteLine("  Solicits ............................ Sent: {0,-10}   Received: {1,-10}", statistics.NeighborSolicitsSent, statistics.NeighborSolicitsReceived)

End Sub

備註

芳鄰探索是一個程式,可讓主計算機和路由器判斷已知位於共用連結上的鄰近位址。 此探索程式的一部分是使用稱為「芳鄰要求」和「芳鄰廣告」的ICMP訊息來完成。 芳鄰要求訊息會傳送來探索鄰近的連結層位址,或確認芳鄰仍可透過快取的連結層位址連線。 包含地址資訊的芳鄰公告會傳送來回應請求或宣告地址變更。

適用於